我有一个疑问,假如在应用程序运行过程中,我修改了 My.Config 这个文件,ASP.NET 会自动捕获到更改吗?
能告诉我,这在实际应用中有什么意义吗,方便得话,发个短消息吧,先谢了
[SRCategory("CatBehavior"), Localizable(true), AmbientValue(-1), SRDescription("ControlIMEModeDescr")]
public ImeMode ImeMode
{
get
{
ImeMode imeModeBase = this.ImeModeBase;
if (imeModeBase == ImeMode.OnHalf)
{
imeModeBase = ImeMode.On;
}
return imeModeBase;
}
set
{
this.ImeModeBase = value;
}
}
反编译 System.Windows.Forms 看到的。不知道是出于什么目的。。。
最后我只能用 KatakanaHalf。。。