L
LongBow
Hello all,
I am having a little problems getting String's StartsWith and
EndsWith methods. If I have a string defined as
sNormalPt which equals "0x11D0" then use the following command
sNormalPt.StartsWith( "0x" )
the application throws and exception stating
error: 'sNormalPt.StartsWith' does not exist
I get the same behavior using the EndsWith method also. The following
is the output from the command window as I typed commands
sNormalPt
"0x11D0"
sNormalPt.Length
6
sNormalPt.StartsWith( "0x" )
error: 'sNormalPt.StartsWith' does not exist
sNormalPt.EndsWith( "D0" )
error: 'sNormalPt.EndsWith' does not exist
I don't understand why this is failing, does any one have some clues?
I do have Visual C# Express Beta 2 installed, so perhaps that has
something to do with it????
Mark
I am having a little problems getting String's StartsWith and
EndsWith methods. If I have a string defined as
sNormalPt which equals "0x11D0" then use the following command
sNormalPt.StartsWith( "0x" )
the application throws and exception stating
error: 'sNormalPt.StartsWith' does not exist
I get the same behavior using the EndsWith method also. The following
is the output from the command window as I typed commands
sNormalPt
"0x11D0"
sNormalPt.Length
6
sNormalPt.StartsWith( "0x" )
error: 'sNormalPt.StartsWith' does not exist
sNormalPt.EndsWith( "D0" )
error: 'sNormalPt.EndsWith' does not exist
I don't understand why this is failing, does any one have some clues?
I do have Visual C# Express Beta 2 installed, so perhaps that has
something to do with it????
Mark