J
John Salerno
Is this valid:
string[] allSwitchValues = readSwitches.ReadToEnd().Split('|');
I have no way to test it just yet (although it didn't seem to create
compile errors). Originally I had it divided into two variables on two
lines, but it seems like I only need the one variable, assuming I can't
combine the ReadToEnd and Split methods like so.
string[] allSwitchValues = readSwitches.ReadToEnd().Split('|');
I have no way to test it just yet (although it didn't seem to create
compile errors). Originally I had it divided into two variables on two
lines, but it seems like I only need the one variable, assuming I can't
combine the ReadToEnd and Split methods like so.