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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top