delegate.cs

来自「这是《ASP.NET编程实作教程》一书中的源文件 如果有此书的朋友不防下载过来参」· CS 代码 · 共 21 行

CS
21
字号
using System;
delegate int myDelegate(int i);
public class Sample
{
	public int get(int i)
	{
	   return i;
	}
}

class delegateTest 
 { 
 	public static void Main() 
 	{ 
  		int a;
  		Sample test=new Sample();
  		myDelegate d=new myDelegate(test.get);
  		a=d(500);
  		Console.Write("result:{0}", a); 		
 	} 
}

⌨️ 快捷键说明

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