M
Martin Fletcher
when I execute
dim strTEMP_DATA as string
strTEMP_DATA = Encoding.ASCII.GetString(rBuffer).ToString
I alway get a string without the closing quote. I see this in the 'Autos'
window, I also see it when I hoover my mouse over the strTEMP_DATA above.
An example would be:
It looks like "test
I believe it should look like "test"
Without the closing quote I CANNOT concat strings.
How can I correct this?
dim strTEMP_DATA as string
strTEMP_DATA = Encoding.ASCII.GetString(rBuffer).ToString
I alway get a string without the closing quote. I see this in the 'Autos'
window, I also see it when I hoover my mouse over the strTEMP_DATA above.
An example would be:
It looks like "test
I believe it should look like "test"
Without the closing quote I CANNOT concat strings.
How can I correct this?