|
|
От: | Spi | |
| Дата: | 29.10.08 09:24 | ||
| Оценка: | |||
public class A
{
public static int x = B.y + 1;
}
public class B
{
public static int y = A.x + 1;
}
static void Main(string[] args)
{
Console.WriteLine("A.x = " + A.x);
Console.WriteLine("B.y = " + B.y);
Console.Read();
}