Example #1
0
 private void WriteFlag(CoercionOptions id, bool value)
 {
     if (value)
     {
         _flags |= id;
     }
     else
     {
         _flags &= (~id);
     }
 }
Example #2
0
 private bool ReadFlag(CoercionOptions id)
 {
     return((id & _flags) != 0);
 }