c# 匿名函数

int t()
{
    Func<int> m=()=>3;
    return m()+m();
}

原文地址:https://www.cnblogs.com/mattins/p/3298769.html