SetValue
Overloads
| Name | Description |
|---|---|
| SetValue(RegistryKey key, string subKey, string name, string value) | 레지스트리 값 설정 |
| SetValue(RegistryKey key, string subKey, Dictionary<string, string> value) | 레지스트리 값 설정 |
SetValue(RegistryKey key, string subKey, string name, string value)
public static void SetValue(RegistryKey key, string subKey, string name, string value)
레지스트리 값 설정
Parameters
| Name | Type | Description |
|---|---|---|
| key | RegistryKey | 최상위 키 : Registry.CurrentUser |
| subKey | string | 하위 키 : Software\Softhills |
| name | string | 값 이름 |
| value | string | 값 데이터 |
SetValue(RegistryKey key, string subKey, Dictionary<string, string> value)
public static void SetValue(RegistryKey key, string subKey, Dictionary<string, string> value)
레지스트리 값 설정
Parameters
| Name | Type | Description |
|---|---|---|
| key | RegistryKey | 최상위 키 : Registry.CurrentUser |
| subKey | string | 하위 키 : Software\Softhills |
| value | Dictionary<string, string> | 값 데이터 (이름, 데이터) |