集合初始化器
在创建集合对象时使用简洁的语法来初始化集合的元素。C# 6引入了更简化的语法来初始化数组和集合,减少了冗余的代码。
List<string> names = new List<string> { "John", "Jane", "Alice" };
int[] numbers = { 1, 2, 3, 4, 5 };
空合并运算符
简洁的方式来处理可能为null的值,它返回第一个非null的操作数。
string name = inputName ?? "Unknown";
条件访问运算符
在访问对象的属性或调用方法之前,先检查对象是否为null。它可以减少空引用异常的发生。
string text = "abcdafdafadf";
int? length = text?.Length;
字符串插值
在字符串中插入变量变得更加简单和直观,而不需要使用字符串连接操作符。
string name = "John";
int age = 30;
Console.WriteLine($"My name is {name} and I'm {age} years old.");
引用传递和值传递简化
C#7 引入了ref locals和ref returns,使得在方法调用和赋值时可以更灵活地使用引用传递。
ref int GetReferenceToValue(ref int value){
return ref value;
}
int x = 5;
ref int refX = ref GetReferenceToValue(ref x);
refX = 10; // 修改了原始变量x的值
类型模式的 switch
C# 9引入了类型模式的 switch 表达式,使得在 switch 表达式中可以根据类型进行匹配和处理。
string result = obj switch
{
string s => "它是string类型",
int i => "他说int类型",
_ => "未知类型"
};
扩展方法
向现有的类型添加新的方法,而无需修改原始类型的定义,提高了代码的可扩展性。
public static class StringExtensions{
public static bool IsPalindrome(this string str)
{
// 判断字符串是否为回文
}
}
string text = "level";
bool isPalindrome = text.IsPalindrome();