⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myclass.cs

📁 这是.net2005学习不可缺少的教程
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace DeleZuhe
{
          delegate void MyDelegate(string s);
         class MyClass
         {
            public static void Hello(string s)
            {
                Console.WriteLine("  Hello, {0}!", s);
            }
            public static void Goodbye(string s)
            {
                Console.WriteLine("  Goodbye, {0}!", s);
            }
            public static void Main()
            {
                MyDelegate a, b, c, d;
                a = new MyDelegate(Hello);
                b = new MyDelegate(Goodbye);
                c = a + b;
                d = c - a;
                Console.WriteLine("Invoking delegate a:"); a("A");
                Console.WriteLine("Invoking delegate b:"); b("B");
                Console.WriteLine("Invoking delegate c:"); c("C");
                Console.WriteLine("Invoking delegate d:"); d("D");
            }
        }

    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -