通过本文主要向大家介绍了c#示例,c#程序示例,平面注写方式示例,表达方式示例,c++代码示例等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
using System;
namespace DelegateDemo
{
class Program
{
private delegate int Cacu(string str);
static void Main(string[] args)
{
//1
Cacu cacu = new Cacu(CacuInstance);
Console.WriteLine(cacu("Hello,Wrold"));
//2
Cacu cacu1 = new Cacu(delegate(string str) { return str.Length; });
Console.WriteLine(cacu1("Hello,Wrold"));
//3
Cacu cacu2 = new Cacu((str) => { return str.Length; });
Console.WriteLine(cacu2("Hello,Wrold"));
}
static int CacuInstance(string str)
{
return str.Length;
}
}
}
</div>
</div>

