c# 7.0 学习笔记

2021-05-03 15:28

阅读:365

标签:put   ons   public   str   value   log   dex   action   int   

out 可以写在里面了

// int result = 0; 不需要写在外面了 
if
(!int.TryParse(input, out int result)) { return null; } return result;

 

Local functions, 终于有了, 写习惯 js 的我超爱 

[Route("")]
public async Task Index()
{
    string abc = dada();
    string dada()
    {
        return "a";
    }
}

 

getter setter 

// Expression-bodied constructor
public ExpressionMembersExample(string label) => this.Label = label;

// Expression-bodied finalizer
~ExpressionMembersExample() => Console.Error.WriteLine("Finalized!");

private string label;

// Expression-bodied get / set accessors.
public string Label
{
    get => label;
    set => this.label = value ?? "Default label";
}

 

c# 7.0 学习笔记

标签:put   ons   public   str   value   log   dex   action   int   

原文地址:http://www.cnblogs.com/keatkeat/p/7742614.html


评论


亲,登录后才可以留言!