-3
votes
Why is there no RAII in .NET?
The idea behind a managed garbage collector is two fold. The first benefit is that you don't have to worry about destroying objects, this avoid memory leaks and other weird problems.
The se …
1
vote
Structure Vs Class in C#
To put it compactly, new is a misnomer for structs, calling new simply calls the constructor. The only storage location for the struct is the location it is defined.
If it is a member varia …
