Example #1
0
    static void Main()
    {
        var stringCollection = new SampleCollection <string>();

        stringCollection.Add("Hello, World");
        System.Console.WriteLine(stringCollection[0]);
    }