G
Guest
Hello,
I'm trying to write:
strMulti = new string[] { @"c:\pagefile.sys", "512", "512" };
with:
keyRead.SetValue(regKey, strMulti, regKind);
Where reKind is Multistring
Unfortunately it ends up int he registry as
c:\pagefile.sys
512
512
while it should be
c:\pagefile.sys 512 512
How can I get it to not write the terminating newlines?
Tx!
Bas
I'm trying to write:
strMulti = new string[] { @"c:\pagefile.sys", "512", "512" };
with:
keyRead.SetValue(regKey, strMulti, regKind);
Where reKind is Multistring
Unfortunately it ends up int he registry as
c:\pagefile.sys
512
512
while it should be
c:\pagefile.sys 512 512
How can I get it to not write the terminating newlines?
Tx!
Bas