vote up 0 vote down star

I have a string value that I want to write to the registry as a Dword to read via another program. How can i create a new key/string using c# .net?

flag

Are you sure you want to be doing IPC through the registry? Perhaps you should check this out: social.msdn.microsoft.com/Forums/en-US/… – Rich B Feb 4 at 7:07

3 Answers

vote up 2 vote down check

You need to use Microsoft.Win32.Registry to add to the mobile device registry. All of the methods have mobile support: http://msdn.microsoft.com/en-us/library/microsoft.win32.registry_members.aspx

link|flag
vote up 1 vote down

Using the Microsoft.Win32.Registry classes, just like on the desktop. There is one caveat: if you're using CF 1.0 then the classes don't exist. In that case I'd recommend pulling the implementation from the old SDF 1.4 source.

link|flag
vote up 0 vote down

You can use this class:

Microsoft.Win32.Registry

it is supported in .NET Compact Framework 3.5 and 2.0

The following links may help you:

How to: Create a Key In the Registry (Visual C#)

http://www.codeproject.com/KB/mobile/PocketRegistry.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.