bool isexist = false;
string mytest = "A";
foreach(TestClass test in tester) {
if (mytest == "A") {
isexist = true;
}
//rest of the code
Methodcall(isexist);
}
public void Methodcall(bool set) {
if (set)
string += "This is any issue";
}
在上面的代码中,我只想在此循环中检查我的 if 条件一次,并且只想在 Methodcall 中传递一次 true,并且在下一个循环中,我想每次在 methodcall 中传递 false,因为我想打印这只是一个问题。