I'd like to know if there is a way to inspect the data os this piece of code with a breakpoint in Visual Studio:
someClass.someVar = 12;
In the same way i would with this one:
someClass.SetSomeVar(12);
There is a way to know the variable's data without making getters and setters ???