S
SteveK
given this code:
TreeNode[] n = new TreeNode[10];
n[0].Text = "test";
does it make sense that I should get a NULL Reference Exception when
assigning to .Text?
Isn't that the whole point of 'new TreeNode[10]'
Any help appreciated, thanks!
TreeNode[] n = new TreeNode[10];
n[0].Text = "test";
does it make sense that I should get a NULL Reference Exception when
assigning to .Text?
Isn't that the whole point of 'new TreeNode[10]'
Any help appreciated, thanks!