namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Test.Foo().ToString());
Console.ReadLine();
}
}
class Test
{
public static int Foo()
{
return null;
}
}
}
Login in to like
Login in to comment