Insider1984
Technical User
Okay so I have a class that consists of four variables:
int a
int b
string c
string d
I have created an array of this class and loaded it up with data.
first[arraycount] = new Test(a,b,c,d);
now for each unique variable in my test array I would like to create a treeview of it.
Example:
a1
=b1
==c1
==c2
==c3
=b2
==c1
==c2
==c3
basically a changes rarely, b changes frequently and c changes all the time.
I'm trying to move to C# from C++ and I'm in a pickle on how to even get started here or what to use.
I don't need the answer, just some guidance on how to get started.
Thanks for your help.
=====================
Insider
4 year 'on the fly' programmer
C++ Basic Java
int a
int b
string c
string d
I have created an array of this class and loaded it up with data.
first[arraycount] = new Test(a,b,c,d);
now for each unique variable in my test array I would like to create a treeview of it.
Example:
a1
=b1
==c1
==c2
==c3
=b2
==c1
==c2
==c3
basically a changes rarely, b changes frequently and c changes all the time.
I'm trying to move to C# from C++ and I'm in a pickle on how to even get started here or what to use.
I don't need the answer, just some guidance on how to get started.
Thanks for your help.
=====================
Insider
4 year 'on the fly' programmer
C++ Basic Java