當前位置: 首頁>>代碼示例>>C#>>正文


C# XMLNode.removeChild方法代碼示例

本文整理匯總了C#中libsbml.XMLNode.removeChild方法的典型用法代碼示例。如果您正苦於以下問題:C# XMLNode.removeChild方法的具體用法?C# XMLNode.removeChild怎麽用?C# XMLNode.removeChild使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在libsbml.XMLNode的用法示例。


在下文中一共展示了XMLNode.removeChild方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: test_XMLNode_remove

 public void test_XMLNode_remove()
 {
     XMLAttributes attr = new  XMLAttributes();
       XMLTriple trp_p = new  XMLTriple("parent","","");
       XMLTriple trp_c1 = new  XMLTriple("child1","","");
       XMLTriple trp_c2 = new  XMLTriple("child2","","");
       XMLTriple trp_c3 = new  XMLTriple("child3","","");
       XMLTriple trp_c4 = new  XMLTriple("child4","","");
       XMLTriple trp_c5 = new  XMLTriple("child5","","");
       XMLNode p = new XMLNode(trp_p,attr);
       XMLNode c1 = new XMLNode(trp_c1,attr);
       XMLNode c2 = new XMLNode(trp_c2,attr);
       XMLNode c3 = new XMLNode(trp_c3,attr);
       XMLNode c4 = new XMLNode(trp_c4,attr);
       XMLNode c5 = new XMLNode(trp_c5,attr);
       XMLNode r;
       p.addChild(c1);
       p.addChild(c2);
       p.addChild(c3);
       p.addChild(c4);
       p.addChild(c5);
       r = p.removeChild(5);
       assertTrue( r == null );
       r = p.removeChild(1);
       assertTrue( p.getNumChildren() == 4 );
       assertTrue( ( "child2" != r.getName() ) == false );
       r = null;
       r = p.removeChild(3);
       assertTrue( p.getNumChildren() == 3 );
       assertTrue( ( "child5" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 2 );
       assertTrue( ( "child1" != r.getName() ) == false );
       r = null;
       r = p.removeChild(1);
       assertTrue( p.getNumChildren() == 1 );
       assertTrue( ( "child4" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 0 );
       assertTrue( ( "child3" != r.getName() ) == false );
       r = null;
       p.addChild(c1);
       p.addChild(c2);
       p.addChild(c3);
       p.addChild(c4);
       p.addChild(c5);
       r = p.removeChild(4);
       assertTrue( p.getNumChildren() == 4 );
       assertTrue( ( "child5" != r.getName() ) == false );
       r = null;
       r = p.removeChild(3);
       assertTrue( p.getNumChildren() == 3 );
       assertTrue( ( "child4" != r.getName() ) == false );
       r = null;
       r = p.removeChild(2);
       assertTrue( p.getNumChildren() == 2 );
       assertTrue( ( "child3" != r.getName() ) == false );
       r = null;
       r = p.removeChild(1);
       assertTrue( p.getNumChildren() == 1 );
       assertTrue( ( "child2" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 0 );
       assertTrue( ( "child1" != r.getName() ) == false );
       r = null;
       p.addChild(c1);
       p.addChild(c2);
       p.addChild(c3);
       p.addChild(c4);
       p.addChild(c5);
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 4 );
       assertTrue( ( "child1" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 3 );
       assertTrue( ( "child2" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 2 );
       assertTrue( ( "child3" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 1 );
       assertTrue( ( "child4" != r.getName() ) == false );
       r = null;
       r = p.removeChild(0);
       assertTrue( p.getNumChildren() == 0 );
       assertTrue( ( "child5" != r.getName() ) == false );
       r = null;
       p.addChild(c1);
       p.addChild(c2);
       p.addChild(c3);
       p.addChild(c4);
       p.addChild(c5);
       r = p.removeChild(0);
       assertTrue( ( "child1" != r.getName() ) == false );
//.........這裏部分代碼省略.........
開發者ID:mgaldzic,項目名稱:copasi_api,代碼行數:101,代碼來源:TestXMLNode.cs


注:本文中的libsbml.XMLNode.removeChild方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。