C#6.0新语法

举报
步步为营 发表于 2023/03/14 14:03:39 2023/03/14
【摘要】 C#6.0新语法

1、自动只读属性

之前属性为如下所示,属性赋值需在构造函数对其初始化

1 public int Id { get; set; }
2 public string Name { get; set; }

点击并拖拽以移动

更新后

public string Name { get; set; } = "summit";
public int Age { get; set; } = 22;
public DateTime BirthDay { get; set; } = DateTime.Now.AddYears(-20);
public IList<int> AgeList
{
      get;
      set;
} = new List<int> { 10, 20, 30, 40, 50 };

点击并拖拽以移动

2、直接引用静态类

如果之前调用静态类中的方法,如下书写:

Math.Abs(20d);

点击并拖拽以移动

更新后:

using static System.Math;

private void Form1_Load(object sender, EventArgs e)
        {
            Abs(20d);
        }

点击并拖拽以移动

3、Null 条件运算符

之前在使用对象时,需要先进性判断是否为null

if (student!=null)
{
    string fullName = student.FullName;
}
else
{
 //……
}

点击并拖拽以移动

更新后:

string fullName = student?.FullName; //如果student为空则返回Null,不为空则返回.FullNaem,注意!得到的结果一定是要支持null

点击并拖拽以移动

4、字符串内插

string str = $"{firstName}和{lastName}"

点击并拖拽以移动

5、异常筛选器

try
{
    
}
catch(Exception e) when(e.Message.Contains("异常过滤,把符合条件的异常捕获")
{
}

点击并拖拽以移动

6、nameof 表达式可生成变量、类型或成员的名称作为字符串常量

Console.WriteLine(nameof(System.Collections.Generic));  // output: Generic
Console.WriteLine(nameof(List<int>));  // output: List

点击并拖拽以移动

7、使用索引器初始化对字典进行赋值

Dictionary<int, string> messages = new Dictionary<int, string>
                {
                    { 404, "Page not Found"},
                    { 302, "Page moved, but left a forwarding address."},
                    { 500, "The web server can't come out to play today."}
                };

点击并拖拽以移动

同时也可以这样通过索引的方式进行赋值

Dictionary<int, string> webErrors = new Dictionary<int, string>
                {
                    [404] = "Page not Found",
                    [302] = "Page moved, but left a forwarding address.",
                    [500] = "The web server can't come out to play today."
                };

点击并拖拽以移动

8、在属性/方法里面使用Lambda表达式

public string NameFormat => string.Format("姓名: {0}", "summit");
public void Print() => Console.WriteLine(Name);

点击并拖拽以移动

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。