111,094
社区成员




TreeNode[] tr = new TreeNode[tnc.Count];
tnc.CopyTo(tr, 0);
foreach (TreeNode tn in tr)
{
tncALL.Add(tn);
if (tn.ChildNodes.Count > 0)
{
GetAllNode(tn.ChildNodes, tncALL);
}
}
return tncALL;