次のロジックをよりシンプルで読みやすい方法で記述できますか?以下は私が必要とすることをします、しかしそれは非常に厄介です:
if (IsChanged == true)
{
return;
}
// Executed when the close (x) button is pressed,
// as the Status string is not yet set to a real value...
else if (Status == "" && IsChanged == false)
{
CancelClose();
}
// saving logic falls to here...
else if (IsChanged == false && Status == "saving")
{
IsChanged = false;
}
ありがとう