I
intrader
Looking at the watch window, I have
----------------watch window-----------------------
ix 6 int
tStr "hyphen, and )(*" string
tStr.Substring(0,ix) error:'tStr.Substring' does not exist
---------------------------------------------------
I have no errors in the compile, and the following works:
string s="1234567890";
s=s.Substring(0,6)
----------------watch window-----------------------
s.Substring(0,6) "123456"
----------------watch window-----------------------
ix 6 int
tStr "hyphen, and )(*" string
tStr.Substring(0,ix) error:'tStr.Substring' does not exist
---------------------------------------------------
I have no errors in the compile, and the following works:
string s="1234567890";
s=s.Substring(0,6)
----------------watch window-----------------------
s.Substring(0,6) "123456"
