How to create a static class in C#? - Biz Tech

How to create a static class in C#?

Listen
public static class MyStaticClass
{
    public static void MyMethod()
    {
        Console.WriteLine("MyMethod called.");
    }
}