1

コーディング (C#) を使用して動的にリソースに値を追加したい。以下のコーディングはエラーなしで実行されますが、値がリソース ファイルに追加されません。

protected void Button2_Click(object sender, EventArgs e)
{
    using (ResXResourceWriter resx = new ResXResourceWriter("Resources.resx"))
    {
        resx.AddResource( "joth", "joth");
        resx.Close();
    }
}      
4

2 に答える 2

1
protected void Button2_Click(object sender, EventArgs e)
{
    using (ResXResourceWriter resx = new ResXResourceWriter("Resources.resx"))
    {   resx.AddResource( "joth", "joth");
        resx.Save();
        resx.Close();
    }
} 
于 2013-04-15T05:39:20.143 に答える