コーディング (C#) を使用して動的にリソースに値を追加したい。以下のコーディングはエラーなしで実行されますが、値がリソース ファイルに追加されません。
protected void Button2_Click(object sender, EventArgs e)
{
using (ResXResourceWriter resx = new ResXResourceWriter("Resources.resx"))
{
resx.AddResource( "joth", "joth");
resx.Close();
}
}