blah blah blah is here! blah blah » Close

1
votes
3 answers

Data Structs - why does C# act differently ?

I have the following struct in C++ which works perfectly. I have used a binary tree struct for this example. [code] struct node { int index; node *left; node *right; }; [/code] now I create this in C# [code] ...

Feedback