摘要:
弃元就是使用下划线_作为一个占位符,但不占存储空间。 元组(ValueTuple、Tuple)使用弃元例子。 using System; namespace ConsoleApp4 { class Program { public static void Main() { // ValueTuple 阅读全文
摘要:
https://docs.microsoft.com/zh-cn/dotnet/csharp/indexers 学习笔记 索引器语法: 通过变量名和方括号访问索引器,使用this关键字作为“属性名”声明索引器,并在方括号里声明索引器参数。 using System; using System.Col 阅读全文