sizer Posted February 13, 2004 Posted February 13, 2004 hi! Can anyone explain me how to put binary value in Registry using C#? Quote Some people are wise and some are other-wise.
Administrators PlausiblyDamp Posted February 13, 2004 Administrators Posted February 13, 2004 quick example... Microsoft.Win32.RegistryKey rk; rk = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(@"Software\Test"); Byte[] b = {1, 2, 3, 4, 5, 6}; rk.SetValue("A Value", b); Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
sizer Posted February 13, 2004 Author Posted February 13, 2004 tnx.... I want to set proxy server on my Internet Connection,but i have a problem with reading binary value from my Internet Connection! Do you know anything about that ? Quote Some people are wise and some are other-wise.
sizer Posted February 13, 2004 Author Posted February 13, 2004 heh, i figured out , tnx for your replay!! :D Quote Some people are wise and some are other-wise.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.