为什么C#有'只读'和'常量'? 2018-06-06 21:08:43 这个问题在这里已经有了答案: const和readonly有什么区别? 31个答案 只读:只能在构造函数中设置。 Const:是一个编译时间常数。 即不能在运行时确定。 链接地址: http://www.djcxy.com/p/21221.html 上一篇: Why does C# have 'readonly' and 'const'? 下一篇: How can I get the equivalent of C++'s "const" in C#?