本文介绍了更新相同的注册表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将上次执行日期存储在注册表中.上次执行日期更改后是否可以更新相同的注册表文件.

I store last execution date in registry. Is it possible to update same registry file, when the last execution date is changed.

推荐答案


RegistryKey rk = Registry.CurrentUser.CreateSubKey("SOFTWARE\\BLA\\BLA");
           rk.SetValue("RegistryName", VALUE);

具有SetValue()属性,您可以更新设置或更改您的注册表值.

with SetValue() property you can update set or change your Registry Value.


这篇关于更新相同的注册表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 18:05