TypeDef or not ???

  • Thread starter Thread starter tiger79
  • Start date Start date
T

tiger79

Hi,
I am using a TreeView and i'm updating the Tag of every Node
programmatically.
Now i see that an object can be passed. So I thought of using a TypeDef
structure like in Basic or C, so that I can pass an integer value together
with a boolean (integer value will give the node an ID and the boolean value
will be set when node has been collapsed on time). Only I can't seem to find
it in C# (using CF) and I allso can't seem to find something that replaces
that. Anyone knows what I could be using, or any alternative solution to my
problem ?
 
hi,

couldn't you just use a string instead? like "1,true" and then parse
it to get, or set the values?

Craig.
 
Back
Top