
委托
文章平均质量分 76
MaximilianLiu
A young man from China who want to make something great to world people in the future,now I call myself developer,programmer,homeguy,and someone unknow,LOL!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
委托_Func委托
Func委托 Func委托用法一: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 委托 { class Program { static int Resul原创 2017-09-13 21:17:59 · 412 阅读 · 0 评论 -
委托_多播委托
委托_多播委托 简单演示: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 委托 { class Program { static void T1()原创 2017-09-16 09:57:40 · 392 阅读 · 0 评论 -
委托_匿名方法
委托_匿名方法using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 匿名方法 { class Program { static int T1(int a, int b)原创 2017-09-16 11:18:09 · 336 阅读 · 0 评论 -
Lambda表达式_匿名方法_委托
lambda表达式_匿名方法_委托 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace lambda表达式 { class Program { static voi原创 2017-09-16 11:30:56 · 405 阅读 · 0 评论 -
委托的定义_委托的实例
委托_学习之巩固基础一 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 委托 { class Program { delegate string GetAStr转载 2017-09-12 21:19:19 · 401 阅读 · 0 评论 -
委托类型作为方法参数的传递
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 委托 { class Program { delegate string GetAString();//定义了一个转载 2017-09-12 22:02:40 · 1391 阅读 · 0 评论 -
Action委托类型
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 委托 { class Program { static void PrintString() {转载 2017-09-12 23:01:07 · 409 阅读 · 0 评论