C#事件

using System;namespace SampleApp {public delegate string MyDel(string str);class EventProgram {event MyDel MyEvent;

编程学习网为您整理以下代码实例,主要实现:C#事件,希望可以帮到各位朋友。

using System;

namespace SampleApp {
   public delegate string MyDel(string str);

   class EventProgram {
      event MyDel MyEvent;

      public EventProgram() {
         this.MyEvent += new MyDel(this.WelcomeUser);
      }

      public string WelcomeUser(string username) {
         return "Welcome " + username;
      }

      static voID Main(string[] args) {
         EventProgram obj1 = new EventProgram();
         string result = obj1.MyEvent("Tutorials Point");
         Console.Writeline(result);
      }

   }
}

本文标题为:C#事件

上一篇: C#使用委托
下一篇: C# Stack类

基础教程推荐