Beispiel #1
0
    static public void Type()
    {
        Console.WriteLine("a Dog!");

        Console.WriteLine("calling cat mew...");
        CatImpl cat = new CatImpl();

        cat.x = 1;
        cat.c = 'x';
        cat.d = 1.43f;
        Cat.Mew(cat);
    }
Beispiel #2
0
 public static extern void Mew(CatImpl cat);