我一直在寻找过去的 2 个小时,实际上我只是在寻找愚蠢的东西。
我正在尝试读取 Registry_binary 值并将其转换为字符串。我尝试了一些我在网上找到的东西(包括一些 stackoverflow 帖子),但似乎我无法让它工作:
class Class1 {
RegistryKey RegKey;
String keys;
static void Main() {
Class1 c=new Class1();
c.initialize();
}
void initialize() {
RegKey=Registry.LocalMachine.OpenSubKey("the location", true);
var bytearray=Converter<RegKey.GetValue("key"), String[keys]>;
Console.WriteLine(bytearray);
System.Threading.Thread.Sleep(5000);
}
}
我也尝试使用:
keys=keys+BitConverter.ToString(System.byte[RegKey.GetValue("key")]);
根据要求:
RegKey=Registry.LocalMachine.OpenSubKey("Software\\MXstudios\\riseingtesharts", true);
keys=RegKey.GetValue("key");
这将输出System.Bytes[]