J
John Hoffman
reading registry through keys to get to key/values,
....
String [] valstr = rksub.GetValueNames();
foreach (String vs in valstr) {
String vstr = rksub.GetValue(vs).ToString(); // EXCEPTION
thrown if 'value' is a //REG_FULL_RESOURCE_DESCRIPTOR; otherwise
string, DWORD, and binary work fine. Binary type returns
// string vstr = 'System.Byte[]'
....
How to read in 'R_F_R_D' reg type? Also, how do you actually determine in C#
what type a value is prior to calling
GetValue(vs) anyway?
....
String [] valstr = rksub.GetValueNames();
foreach (String vs in valstr) {
String vstr = rksub.GetValue(vs).ToString(); // EXCEPTION
thrown if 'value' is a //REG_FULL_RESOURCE_DESCRIPTOR; otherwise
string, DWORD, and binary work fine. Binary type returns
// string vstr = 'System.Byte[]'
....
How to read in 'R_F_R_D' reg type? Also, how do you actually determine in C#
what type a value is prior to calling
GetValue(vs) anyway?