namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Test.Foo().ToString());
Console.ReadLine();
}
}
class Test
{
public static int Foo()
{
return null;
}
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать