What is mean by reference in .net wrt CLR (managing objects)?
+1
A:
That means only pointer to an object is passed, not the whole object...
Anvaka
2010-02-23 16:53:55
+1
A:
If you don't want to think in terms of C++ pointers, then it means that if you pass an object to a method by reference, then the method can modify the original object. If you pass it by value, then the method gets a copy of the object and can't modify the original.
David
2010-02-23 16:56:44
Except in C# you never actually pass an *object* at all...
Jon Skeet
2010-02-23 17:25:09
A:
what is the Exact role of CLR>>>>.....and how can it works on web applications ...
rajendra
2010-07-16 04:35:30