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 不是常数?
基础教程推荐
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
