public static void Main()
        {
            var tmp = new Library1();

            tmp.VirtualMethodFromBase();
        }
Exemple #2
0
    static void Main(string[] args)
    {
        var s = Library1.GetMessage();

        Console.WriteLine(s);
    }
Exemple #3
0
        public void Test1()
        {
            var s = Library1.GetMessage();

            Assert.Equal(s, "Hello there");
        }