In C# there is concept of static and instance variables.
Static variables are shared by all instances.
In the code snapshot from above, an instance field _bigClass is created. In the constructor and other methods, this is instantiated and it's methods are invoked. My question is - why has the user not used this.
_bigClass? I'm trying to understand whether it is not necessary to use the this.
keyword to access variables within c# class?