RegistryKey regKey = Registry.ClassesRoot ;
RegistryKey regSubKey = regKey.OpenSubKey("*\\shell\\UnZip\\Command");
if (regSubKey == null)
{
regSubKey = regKey.CreateSubKey("*\\shell\\UnZip\\Command");
//string str = (string)regSubKey.GetValue("(標準)");
}我创建了("*\\shell\\UnZip\\Command)键后,它默认有个“(標準)”key,值未设置,
我怎么样给这个“(標準)”key设值呢?