What is the opposite of the string comparison
thisString->EndsWith("String")
If it does not end with...
What is the opposite of the string comparison
thisString->EndsWith("String")
If it does not end with...
Not exactly sure what you mean by "opposite", but there is a StartsWith method. Alternatively if you're looking for whether it doesn't end with you could just negate the value returned by EndsWith. Hope this helps, and that I'm understanding the question correctly.
Verbose:
if (thisString->EndsWith("String") == false)
{
// does not end with
}
Terse:
if (!thisString->EndsWith("String"))
{
// ditto
}