質問編集履歴

2

タイトル変更

2019/07/29 14:56

投稿

f_tonakai
f_tonakai

スコア15

test CHANGED
@@ -1 +1 @@
1
- c# static変数
1
+ c# newしたオブジェクト破棄する方法
test CHANGED
File without changes

1

誤字

2019/07/29 14:56

投稿

f_tonakai
f_tonakai

スコア15

test CHANGED
File without changes
test CHANGED
@@ -180,16 +180,14 @@
180
180
 
181
181
  Button1_Click()実行後にButton2_Click()を実行すると、
182
182
 
183
- 「private static Dictionary<string, AppInterface> _AppList = new Dictionary<string, AppInterface>();」には
183
+ 「private static Dictionary<string, AppInterface> _AppList = new Dictionary<string, AppInterface>();」
184
-
184
+
185
- プログラムが起動している間は常に「2件」値が入っている状態になります。(これはこれでOKなんです)
185
+ には、プログラムが起動している間は常に「2件」値が入っている状態になります。(これはこれでOKなんです)
186
186
 
187
187
  Button1_Click()実行:_AppListに追加
188
188
 
189
189
  Button2_Click()実行:_AppListに追加
190
190
 
191
- される動きで問題ないのですが、
192
-
193
191
 
194
192
 
195
193
  Button1_Click()の処理が終わった後に、_AppList から削除したい場合、どうしたら実現できましか?