A
AMP
I have a string
actually its a line turned into a string)
"30 40 04 40 FF 3F 31 40 00 39 B0 12 4E 40 B0 12'
in c strlen() gives me 49
but c# :
LinetoString = infile.ReadLine();
linelen= LinetoString.Length;
Gives me 47.(Sounds more accurate)
Both doc say the number is before any terminating Chars.
Any help.
Can I "pad" it?
Thanks
Mike

"30 40 04 40 FF 3F 31 40 00 39 B0 12 4E 40 B0 12'
in c strlen() gives me 49
but c# :
LinetoString = infile.ReadLine();
linelen= LinetoString.Length;
Gives me 47.(Sounds more accurate)
Both doc say the number is before any terminating Chars.
Any help.
Can I "pad" it?
Thanks
Mike