Binary value

quick example...
C#:
		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);
 
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 ?
 
Back
Top