c#中如何把多个方法放入数组

时间:2026-02-16 01:15:16

1、 // 1、定义一个委托 TestDelegate

        delegate void TestDelegate(string text);

2、设置好几个函数

static void MothedA(string text)

        {

            MessageBox.Show("方法A:" + text);

        }

        static void MothedB(string text)

        {

            MessageBox.Show("方法B:" + text);

        }

        static void MothedC(string text)

        {

            MessageBox.Show("方法C:" + text);

        }

3、public void Start()

        {

            //2、定义委托数组

            TestDelegate[] array = new TestDelegate[3];

            // 3、建立委托数字,将方法MothedA,MothedB,MothedC放入数组中

            array[0] = new TestDelegate(MothedA);

            array[1] = new TestDelegate(MothedB);

            array[2] = new TestDelegate(MothedC);

            // 4、从数组中就可以方便调用方法了

            array[0]("中国");

            array[1]("日本");

            array[2]("美国");

        }

c#中如何把多个方法放入数组

© 2026 长短途
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com