Exemplo n.º 1
0
 public static CPUKey Parse(string value)
 {
     return(Parse(CPUKeyUtils.HexStringToBytes(value)));
 }
Exemplo n.º 2
0
 public static bool TryParse(string value, out CPUKey cpuKey)
 {
     return(TryParse(CPUKeyUtils.HexStringToBytes(value), out cpuKey));
 }
Exemplo n.º 3
0
 public bool TryUpdate(string value)
 {
     return(TryUpdate(CPUKeyUtils.HexStringToBytes(value)));
 }