虽然我知道改变 的价值String.Empty
是个坏主意,但我不明白为什么我不能这样做。
要明白我的意思,请考虑以下课程:
public class SomeContext
{
static SomeContext(){}
public static readonly string Green = "Green";
public static readonly SomeContext Instance = new SomeContext();
private SomeContext(){}
public readonly string Blue = "Blue";
public static void PrintValues()
{
Console.WriteLine(new { Green, Instance.Blue, String.Empty }.ToString());
}
}
我有一个小控制台应用程序,它试图操纵这三个只读字段。它可以成功地将 Blue 和 Green 变成 Pink,但 Empty 保持不变:
SomeContext.PrintValues();
/// prints out : { Green = Green, Blue = Blue, Empty = }
typeof(SomeContext).GetField("Blue").SetValue(SomeContext.Instance, "Pink");
typeof(SomeContext).GetField("Green", BindingFlags.Public | BindingFlags.Static).SetValue(null, "Pink");
typeof(String).GetField("Empty", BindingFlags.Public | BindingFlags.Static).SetValue(null, "Pink");
SomeContext.PrintValues();
/// prints out : { Green = Pink, Blue = Pink, Empty = }
为什么?
最初,我还问为什么String.Empty
不是常数。我在另一篇文章中找到了这部分问题的答案,并删除了这部分问题)。
注意:没有一个“重复”对这个问题有明确的答案,这就是我问这个问题的原因。