registry editing

  • Thread starter Thread starter memememe
  • Start date Start date
M

memememe

How can I add a new registry key of type multi_string? of course using C#.
I know how to add registry keys and values, just not how to give them a
type, it seems like I would need to pass a byte[] or something.
 
memememe said:
How can I add a new registry key of type multi_string? of course using C#.
I know how to add registry keys and values, just not how to give them a
type, it seems like I would need to pass a byte[] or something.
The type depends on the data passed in. Try passing in a string
array(string[]), that should give you a multi_sz value.
 
Back
Top