在cshtml页面上写方法

返回
Author Avatar
钢翼
2020-12-24
编程
55
@{
   Func<string> func = () =>
    {
        return "123";
    };

@func.Invoke()