output1
とで異なる結果が得られoutput2
ます。前者はレジストリに実際に表示される値を提供しますが、後者はデフォルト値のみを提供します。何が恋しいですか?
String output1 = Registry.GetValue(
@"HKEY_USERS\blobb", "beep", "nope!") as String;
String output2 = Registry.Users.GetValue(
@"blobb\beep", "nope!") as String;
入力文字列のさまざまなバリエーションをかなり試しましたが、正しい値が得られませんでした。