本文详细讲解了C#10的5个特性,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
C# 10 允许使用在常量字符串初始化中使用插值, 如下
const string name = "Oleg";
const string greeting = $"Hello, {name}.";
Console.WriteLine(greeting);
// Output: Hello, Oleg.
从 C# 10 开始,您可以在适当的模式中引用嵌套的属性或字段, 属性模式变得更具可读性并且需要更少的大括号。
Person person = new()
{
Name = "Oleg",
Location = new() { Country = "PL" }
};
if (person is { Name: "Oleg", Location.Country: "PL" })
{
Console.WriteLine("It's me!");
}
class Person
{
public string Name { get; set; }
public Location Location { get; set; }
}
class Location
{
public string Country { get; set; }
}
如果Location为null,则不会匹配模式并返回false。
C# 10 引入了一种新的命名空间声明方式 - 文件范围的命名空间,减少一个大括号,代码结构更简洁。
namespace FileScopedNamespace;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
一次引用,全局通用
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.Threading.Tasks;
List<int> list = new() { 1, 2, 3, 4 };
int sum = list.Sum();
Console.WriteLine(sum);
await Task.Delay(1000);
Test<int>();
var l1 = string () => string.Empty;
var l2 = int () => 0;
var l3 = static void () => { };
void Test<T>()
{
var l4 = T () => default;
}
这5个C#的新特性你都用过吗?欢迎留言讨论。