Ejemplo n.º 1
0
        public void Shout()
        {
            Console.WriteLine("喵喵喵");

            if (catShout != null)
            {
                Cat5thShoutEventArgs e = new Cat5thShoutEventArgs(Name);

                catShout(this, e);
            }
        }
Ejemplo n.º 2
0
 public void Jump(object sender, Cat5thShoutEventArgs e)
 {
     Console.WriteLine("{0} 来了。 {1} 跳了起来", e.CatName, Name);
 }