//定义委托方法Action(无返回值)Func(有返回值) //无返回值委托 Action<string> SetKeyAndValue = delegate(string key) { //do something... }; //有返回值委托 Func<string, bool> SetKeyAndValue = delegate(string key) { //do something... return true; };
时间: 2024-10-09 23:50:52
//定义委托方法Action(无返回值)Func(有返回值) //无返回值委托 Action<string> SetKeyAndValue = delegate(string key) { //do something... }; //有返回值委托 Func<string, bool> SetKeyAndValue = delegate(string key) { //do something... return true; };