我想知道,由于可以使用反射完成很多事情,我可以在构造函数完成执行后更改私有只读字段吗?
(注:只是好奇)
public class Foo
{
private readonly int bar;
public Foo(int num)
{
bar = num;
}
public int GetBar()
{
return bar;
}
}
Foo foo = new Foo(123);
Console.WriteLine(foo.GetBar()); // display 123
// reflection code here...
Console.WriteLine(foo.GetBar()); // display 456