Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下を使用して、匿名クラスを簡単に作成できます。しかし、私はそれに書くことができません。ある種の名前のないクラスに書き込む方法はありますか?
var test = new { a = 5, b = "sz" }; test.a++;
匿名クラスのプロパティは読み取り専用であるため、これは匿名型では不可能です。理由については、ここで読むことができます:
C# の匿名型のプロパティが読み取り専用なのはなぜですか?