10
ste09
7y

And then, looking for the source of a bug in the code .... I randomly found this:

public bool IsOperationStarted { get; set; }

public bool IsOperationStartedTrue
{
get { return IsOperationStarted == true; }
}

public bool IsOperationStartedFalse
{
get { return IsOperationStarted == false; }
}

Comments
Add Comment