0

I am trying to create a string1 in My.Settings and used the My.Settings.Save method and it is working perfect. The problem is that the default value is "My Name is X" and the given saved value at runtime is "My Name is Z", when the next time I run the debugger in VS2010 with F5 key i am getting the new value only not the original x, I tried to clean, rebuild the app but still the new value is only showing up, how to debug with original values?

Thank you.

4

1 に答える 1

1

各デバッグ セッションで生成された設定ファイル (C:/Users/... に保存されている) を削除する必要があると思います。そうしないと、初期化部分内のコードで次のようなことができます。

#if Debug
     YourApp.Properties.Settings.Default.String1 = "My name is X";
     YourApp.Properties.Settings.Default.Save();
#endif
于 2012-05-17T10:16:12.883 に答える