Пример #1
0
 public static CPUKey Parse(string value)
 {
     return(Parse(CPUKeyUtils.HexStringToBytes(value)));
 }
Пример #2
0
 public static bool TryParse(string value, out CPUKey cpuKey)
 {
     return(TryParse(CPUKeyUtils.HexStringToBytes(value), out cpuKey));
 }
Пример #3
0
 public bool TryUpdate(string value)
 {
     return(TryUpdate(CPUKeyUtils.HexStringToBytes(value)));
 }