private bool getWindowBool() {
bool myBool;
this.Invoke(new MethodInvoker(() => myBool = IsForegroundWindow));
return myBool;
}
なぜこれが機能しないのですか?私が達成しようとしていることをどのように行うでしょうか?
private bool getWindowBool() {
bool myBool;
this.Invoke(new MethodInvoker(() => myBool = IsForegroundWindow));
return myBool;
}
なぜこれが機能しないのですか?私が達成しようとしていることをどのように行うでしょうか?