Beispiel #1
0
        public static void TestGenericAlias()
        {
            MyTest test = new MyTest();

            test.SetValue("Hello world!");
            var val = test.GetValue();

            Assert.AreEqual("Hello world!", val, "Generics by alias, member value set, is correctly fetched.");
        }