Class C# Tutorial

using System;
using System.ComponentModel;
        class Outer
        {
            public class Inner
            {
                static Inner()
                {
                    Console.WriteLine("Outer<{0}>.Inner<{1},{2}>",
                                      typeof(T).Name,
                                      typeof(U).Name,
                                      typeof(V).Name);
                }
                public static void DummyMethod()
                {
                }
            }
            static void Main()
            {
                Outer.Inner.DummyMethod();
            }
        }