为了账号安全,请及时绑定邮箱和手机立即绑定

有木有代码?

讲的特别好,请问有代码吗?

正在回答

2 回答

using System;


namespace demo8

{

    class Program

    {

        static void Main(string[] args)

        {

            Client c1 = new Client();

            Client c2 = new Client();

            Dog.NewDog += c1.WantADog;

            Dog.NewDog += c2.WantADog;


            Dog dog = new Dog("tom");

        }

    }

    public class Dog

    {

        static int Num;

        public delegate void Hander();

        public static event Hander NewDog;

        public Dog(string name)

        {

            Num++;

            if (NewDog != null)

            {

                NewDog();

            }

        }

    }

    class Client

    {

        public void WantADog()

        {

            Console.WriteLine("我想要一条狗");

        }

    }

}


0 回复 有任何疑惑可以回复我~
自己下软件跟着敲赛。


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

有木有代码?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信