我不能在注册表中添加超过10个数字值的DWord

时间:2019-04-07 12:02:16

标签: c# registry

我无法添加此值,因为范围太高,可以帮帮我吗 行代码是:

Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Pa
rameters", "A", (object)4026527743, RegistryValueKind.DWord);

1 个答案:

答案 0 :(得分:0)

您必须长时间使用“ RegistryValueKind.QWord”,它用于64位二进制数。 DWord用于32位二进制数。

Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters",
"A", 4026527743, RegistryValueKind.QWord);