1. 程式人生 > >C# 8: 可變結構體中的只讀例項成員

C# 8: 可變結構體中的只讀例項成員

在之前的文章中我們介紹了 C# 中的 [只讀結構體(readonly struct)](https://mp.weixin.qq.com/s/wwVZbdY7m7da1nmIKb2jCA)[^1] 和與其緊密相關的 [`in` 引數](https://ittranslator.cn/dotnet/csharp/2020/11/02/understanding-in-modifier-csharp.html)[^2]。 今天我們來討論一下從 C# 8 開始引入的一個特性:可變結構體中的只讀例項成員(當結構體可變時,將不會改變結構體狀態的例項成員宣告為 `readonly`)。