What is the difference between a member variable and a local variable?
Are they the same?
public class Foo { private int _FooInt; // I am a member variable public void Bar() { int barInt; // I am a local variable //Bar() can see barInt and _FooInt } public void Baz() { //Baz() can only see _FooInt } }