http://bugzilla.novell.com/show_bug.cgi?id=601766
http://bugzilla.novell.com/show_bug.cgi?id=601766#c6 --- Comment #6 from Carlos Alberto Cortez <[email protected]> 2010-05-03 03:54:47 UTC --- Actually you shouldn't use a TreeNodeCollection to just simple store a *plain* list of nodes - use a List<TreeNode> list instead ;-) : List<TreeNode> nodes = new List<TreeNode> (); nodes.Add (new TreeNode ("A")); nodes.Add (new TreeNode ("B")); .. treeView1.Nodes.AddRange (nodes.ToArray ()); -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
