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); }
public static extern void Mew(CatImpl cat);