Is it possible to do workaround for Automatic property of Reference Type (Class) to be able passed by Ref?
The only thing I think about is not to use Automatic property: just declare private variable as always and passing it by ref + adding public property aside if I need.
Frankly it looks a bit stupid ( all that bureaucracy needed to bypass it)
My Questions:
1.Why the compiler don't allow automatic property to be pass by ref(like it was a simple data member)?
2.When do we use or should use Ref? I noticed some people saying that using it may occur only in rare scenarios. What are them?