public static string GetRegCode(string machineCode) { SoftReg sr = new SoftReg(); try { return sr.GetRegCode(machineCode).InsertFormat(6, "-"); } catch (Exception ex) { throw ex; } }
public static string GetMachineCode() { SoftReg sr = new SoftReg(); try { return sr.GetMachineCode(); } catch (Exception ex) { throw ex; } }