class A
{
int x;
public int X{ get { return x;} set { x = value; } }
public void Method()
{
Console.WriteLine( x ) ;
}
}
class A
{
public void Method( int x )
{
Console.WriteLine( x ) ;
}
}
Два примера решения одной задачи