using System;
namespace ConsoleApplication_C_Sharp
{
public static class SClass
{
public static void Method()
{
Console.WriteLine("Method() from SClass");
}
}
class Program
{
static void Main(string[] args)
{
SClass.Method();
}
}
}
/*
run:
Method() from SClass
*/