GetValue
Overloads
| Name | Description |
|---|---|
| GetValue(RegistryKey key, string subKey, string name) | 레지스트리 값 반환 |
| GetValue(RegistryKey key, string subKey, List<string> name) | 레지스트리 값 반환 |
GetValue(RegistryKey key, string subKey, string name)
public static string GetValue(RegistryKey key, string subKey, string name)
레지스트리 값 반환
Parameters
| Name | Type | Description |
|---|---|---|
| key | RegistryKey | 최상위 키 : Registry.CurrentUser |
| subKey | string | 하위 키 : Software\Softhills |
| name | string | 값 이름 |
Returns
| Type | Description |
|---|---|
| string | 레지스트리 값 |
GetValue(RegistryKey key, string subKey, List<string> name)
public static Dictionary<string, string> GetValue(RegistryKey key, string subKey, List<string> name)
레지스트리 값 반환
Parameters
| Name | Type | Description |
|---|---|---|
| key | RegistryKey | 최상위 키 : Registry.CurrentUser |
| subKey | string | 하위 키 : Software\Softhills |
| name | List<string> | 값 이름 목록 |
Returns
| Type | Description |
|---|---|
| Dictionary<string, string> | 레지스트리 값(이름, 데이터) |