我在output1
和中得到不同的结果output2
。虽然第一个给了我在注册表中实际看到的值,但后者只给了我默认值。我想念什么?
String output1 = Registry.GetValue(
@"HKEY_USERS\blobb", "beep", "nope!") as String;
String output2 = Registry.Users.GetValue(
@"blobb\beep", "nope!") as String;
我已经尝试了很多不同的输入字符串变体,但没有一个给我正确的值。