这是我创建的一个简单程序——一个表类,一个主类。在表类中,我创建了一个简单地输出我的名字的打印方法。从主类我调用 print 方法但没有得到输出。
namespace ConsoleApplication3
{
class table
{
public static void print()
{
Console.WriteLine("My name is prithvi-raj chouhan");
}
}
class Program
{
public static void Main()
{
table t = new table();
t.print(); // Error the program is not giving output while calling the print method
}
}
}