Exemple #1
0
 internal void SetFlag(BoolTypeBits typeBit, bool value)
 {
     SetFlag(ref _boolTypeBits, (int)typeBit, value);
 }
 internal void SetFlag(BoolTypeBits typeBit, bool value)
 {
     Reflector.SetFlag(ref this._boolTypeBits, (int)typeBit, value);
 }
Exemple #3
0
 internal bool?GetFlag(BoolTypeBits typeBit)
 {
     return(GetFlag(_boolTypeBits, (int)typeBit));
 }
 internal bool?GetFlag(BoolTypeBits typeBit)
 {
     return(Reflector.GetFlag(this._boolTypeBits, (int)typeBit));
 }