标签: c# anonymous-types
我可以使用下面的内容轻松创建一个匿名类。但是我不能写信给它。有没有办法可以写一些未命名的类?
var test = new { a = 5, b = "sz" }; test.a++;
答案 0 :(得分:1)
匿名类型无法实现这一点,因为匿名类的属性是只读的。至于原因,你可以在这里阅读:
Why are the properties of anonymous types in C# read-only?