Why isn#39;t String.Empty a constant?(为什么 String.Empty 不是常数?)
问题描述
在 .NET 中,为什么 String.Empty
是只读的而不是常量?我只是想知道是否有人知道该决定背后的原因.
In .NET why is String.Empty
read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
推荐答案
之所以使用 static readonly
而不是 const
是因为使用了非托管代码,如微软在 Shared源公共语言基础结构 2.0 版本.要查看的文件是 sscli20clrsrcclsystemstring.cs
.
The reason that static readonly
is used instead of const
is due to use with unmanaged code, as indicated by Microsoft here in the Shared Source Common Language Infrastructure 2.0 Release. The file to look at is sscli20clrsrcclsystemstring.cs
.
Empty 常量保存空字符串值.我们需要调用字符串构造函数,以便编译器不会将此标记为字面意思.
The Empty constant holds the empty string value. We need to call the String constructor so that the compiler doesn't mark this as a literal.
将其标记为文字意味着它不会显示为字段我们可以从本地访问.
Marking this as a literal would mean that it doesn't show up as a field which we can access from native.
我从 CodeProject 上这篇方便的文章中找到了这些信息.
I found this information from this handy article at CodeProject.
这篇关于为什么 String.Empty 不是常数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 String.Empty 不是常数?


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01