We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8559b24 commit f6a7a0aCopy full SHA for f6a7a0a
2 files changed
TryCSharp.Samples/Linq/LinqSamples50.cs
@@ -32,6 +32,7 @@ public void Execute()
32
if (string.IsNullOrEmpty(tmpFilePath))
33
{
34
Output.WriteLine("ファイル作成中にエラー発生");
35
+ return;
36
}
37
38
Output.WriteLine("ファイル作成完了");
TryCSharp.Samples/Threading/ThreadingNamespaceSamples02.cs
@@ -69,6 +69,10 @@ public void Execute()
69
private void DoAnonymousDataSlotProcess(object stateObj)
70
71
var slot = stateObj as LocalDataStoreSlot;
72
+ if (slot == null)
73
+ {
74
75
+ }
76
77
//
78
// スロットにデータを設定
0 commit comments