G
Guest
I am using
RegistryKey reademai2 = Registry.LocalMachine.OpenSubKey(launch_email_path,
true);
string launch_email = (String)reademai2.GetValue("");
To get the value, in the registry, value = "C:\Program Files\Internet
Explorer\iexplore.exe" -nohome
but If I used string launch_email = (String)reademai2.GetValue("");
I got the value ="\"C:\Program Files\Internet Explorer\iexplore.exe\" -nohome"
System will add "\......\", is it normal?
RegistryKey reademai2 = Registry.LocalMachine.OpenSubKey(launch_email_path,
true);
string launch_email = (String)reademai2.GetValue("");
To get the value, in the registry, value = "C:\Program Files\Internet
Explorer\iexplore.exe" -nohome
but If I used string launch_email = (String)reademai2.GetValue("");
I got the value ="\"C:\Program Files\Internet Explorer\iexplore.exe\" -nohome"
System will add "\......\", is it normal?