public static void DoSomething() { int a; string b; //..do something }
In the example above, i have declared two variables. Do they become static
From MSDN
C# does not support static local variables (variables that are declared in method scope).