예제 #1
0
 public bool IsSet(UnrecExpStatus checkStatus)
 {
     return((Status & checkStatus) == checkStatus);
 }
예제 #2
0
 public bool IsNotSet(UnrecExpStatus checkStatus)
 {
     return((Status & checkStatus) != checkStatus);
 }
예제 #3
0
 public void AddStatus(UnrecExpStatus status)
 {
     Status |= status;
 }