http://stackoverflow.com/questions/4317479/func-vs-action-vs-predicate
The difference between Func and Action is simply whether you want the delegate to return a value (use Func) or not (use Ac...
============================================================初识委托----------------------------主程序 using System;
using System.Collections.Generic;
using System.Linq;
using ...