Ejemplo n.º 1
0
 public U16(string n, UInt16 v, bool hex = true)
     : base(n, hex)
 {
     Value          = v;
     ValidationRule = new NMPRK_GUI.NumberValidationRule(ushort.MinValue, ushort.MaxValue, hex);
 }
Ejemplo n.º 2
0
 public U64(string n, UInt64 v, bool hex = true)
     : base(n, hex)
 {
     Value          = v;
     ValidationRule = new NMPRK_GUI.NumberValidationRule(ulong.MinValue, ulong.MaxValue, hex);
 }
Ejemplo n.º 3
0
 public U8(string n, byte v, bool hex = true)
     : base(n, hex)
 {
     Value          = v;
     ValidationRule = new NMPRK_GUI.NumberValidationRule(byte.MinValue, byte.MaxValue, hex);
 }
Ejemplo n.º 4
0
 public U32(string n, UInt32 v, bool hex = true)
     : base(n, hex)
 {
     Value          = v;
     ValidationRule = new NMPRK_GUI.NumberValidationRule(uint.MinValue, uint.MaxValue, hex);
 }