问题描述
classNode{publicstringParent{get;privateset;}publicintNo{get;privateset;}publicList<Node>Children{get;privateset;}publicNode(stringparent,intno){this.Parent=parent;this.No=no;this.Children=newList<Node>();}}privateList<Node>data=newList<Node>();??????????data.RemoveAll(x=>);
解决方案
解决方案二:
描述清楚点咯。
解决方案三:
怎麼刪除dataChildren裡面的No等於11data.RemoveAll(x=>);
解决方案四:
data.RemoveAll(x=>x.No==1);
解决方案五:
是data裡的childrenlist符合No=11,要刪掉
解决方案六:
你怎么放进去的,就怎么删除
时间: 2024-11-01 13:49:52