C#6.0新语法示例详解

作者:变脸超人 时间:2023-11-16 03:43:42 

前言

一直用C#开发程序,.NET的功能越来越多,变化也挺大的,从最初的封闭,到现在的开源,功能不断的增加,一直在进步。下面就来给大家详细介绍下C#6.0新语法的相关内容,一起来看看吧

众所周知,c# 6.0 是在visual studio 2015中引入的。在其他的几个版本中同样引入一些特性,比如在c# 3.0中引入了linq,在c# 4.0中引入了动态类型dynamic,在c#5.0中引入async和await等等。

在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);

来源:https://blog.csdn.net/weixin_44064908/article/details/111408797

标签:c#6.0,新语法
0
投稿

猜你喜欢

  • JavaWeb开发之使用jQuery与Ajax实现动态联级菜单效果

    2023-11-28 19:46:08
  • java注解的类型知识点总结

    2022-11-04 00:26:02
  • springboot+log4j.yml配置日志文件的方法

    2023-08-07 11:33:17
  • C#实现自定义windows系统日志的方法

    2021-12-17 13:02:31
  • spring mvc实现文件上传与下载功能

    2022-05-13 09:50:14
  • spring boot使用logback实现多环境日志配置详解

    2022-10-03 20:38:24
  • Java 调用天气Webservice详解及实例代码

    2021-10-09 21:59:03
  • Android SDK Manager国内无法更新的解决方案

    2021-06-23 11:02:19
  • Java拦截器Interceptor实现原理及代码示例

    2023-11-04 03:49:32
  • C#多线程死锁介绍与案例代码

    2022-08-01 06:40:05
  • Java关键字之this用法详解

    2022-03-23 21:43:22
  • C#通过正则表达式实现提取网页中的图片

    2022-03-30 05:03:03
  • Android代码检查规则Lint的自定义与应用详解

    2021-11-04 22:13:43
  • Java File类提供的方法与操作

    2023-08-29 09:10:41
  • 利用C#实现SSLSocket加密通讯的方法详解

    2023-03-01 02:23:05
  • 基于Flutter实现爱心三连动画效果

    2023-09-02 03:38:36
  • c# 获取照片的经纬度和时间的示例代码

    2022-03-22 18:21:54
  • Springboot @Configuration @bean注解作用解析

    2022-11-05 01:58:47
  • 对C#中public、private、protect的区别说明

    2021-05-30 22:11:21
  • Java 8 中 Function 接口使用方法介绍

    2022-12-08 23:54:39
  • asp之家 软件编程 m.aspxhome.com