Ejemplo n.º 1
0
        public static void TestInsert()
        {
            OrderableStrings strings = new OrderableStrings
            {
                "LLA",
                "YA",
                { "UT", -3 }
            };

            strings.Insert(2, "test-insert");

            Assert.AreEqual("LLA,YA,test-insert,UT", strings.ToString());
        }