Exemplo n.º 1
0
 public void SetCustomValue(UIntFieldKey key, uint value)
 {
     if (key.Index < 0)
     {
         return;
     }
     ArrayChecker(ref _customBits, key.Index);
     SetInteger(ref _customBits[key.Index], key.Position, key.Mask, value);
 }
Exemplo n.º 2
0
 public uint GetCustomValue(UIntFieldKey key)
 {
     if (key.Index < 0)
     {
         return(0);
     }
     ArrayChecker(ref _customBits, key.Index);
     return(GetInteger(_customBits[key.Index], key.Position, key.Mask));
 }
Exemplo n.º 3
0
 public void SetCustomValue(UIntFieldKey key, uint value)
 {
     if (key.Index < 0) { return; }
     ArrayChecker(ref _customBits, key.Index);
     SetInteger(ref _customBits[key.Index], key.Position, key.Mask, value);
 }
Exemplo n.º 4
0
 public uint GetCustomValue(UIntFieldKey key)
 {
     if (key.Index < 0)
     {
         return 0;
     }
     ArrayChecker(ref _customBits, key.Index);
     return GetInteger(_customBits[key.Index], key.Position, key.Mask);
 }