[code=C#]
class a
{
public static dis()
{
int x=10;
}
}
[/code]
In the above case weather the variable 'x' is static or normal variable.
because static block can access only static variables only
class a
{
public static dis()
{
int x=10;
}
}
[/code]
In the above case weather the variable 'x' is static or normal variable.
because static block can access only static variables only
Comment