码迷,mamicode.com
首页 > Windows程序 > 详细

c# 7.0 学习笔记

时间:2017-10-27 16:01:57      阅读:225      评论:0      收藏:0      [点我收藏+]

标签: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<IActionResult> 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!