(string t, string d)
| 28 | } |
| 29 | |
| 30 | public static void SetDebugger(string t, string d) |
| 31 | { |
| 32 | d = d.Replace("\"", "\\\""); |
| 33 | Invoke($"reg add \"HKLM\\{IFEO_PATH}\\{t}\" /v \"{VALUE_NAME}\" /t REG_SZ /d \"{d}\" /f"); |
| 34 | } |
| 35 | |
| 36 | public static void RemoveDebugger(string t) |
| 37 | { |