首页 > TAG信息列表 > PriceChanged

事件 event

1 using System; 2 3 namespace ConsoleApp1 4 { 5 class Program 6 { 7 static void Main(string[] args) 8 { 9 Stock stock = new Stock("cmp"); 10 stock.Price = 27.10M; 11

事件的标准模式

事件的标准模式 .NET 框架为事件编程定义了一个标准模式。设定这个标准是为了让.NET框架和用户代码保持一致。System.EventArgs是标准模式的核心,它是一个没有任何成员,用于传递事件参数的基类。 按照标准模式,我们对于上面的iPhone6示例进行重写。首先定义EventArgs: public class P

事件的基本使用

事件的基本使用 声明一个事件很简单,只需在声明一个委托对象时加上event关键字就行。如下: public delegate void PriceChangedHandler (decimal oldPrice, decimal newPrice);public class IPhone6 { public event PriceChangedHandler PriceChanged; } 事件的使用和委托完全