My application is failing on a string comparison. I have put in a breakpoint and then used the intermediate window of Visual Studio and done the following experiment
subject
"<#MethodResourceObjectives>"
subject.Contains("<#Method")
true
subject.Contains("<#MethodResource")
true
subject.Contains("<#MethodResourceObjectives")
true
subject.Contains("<#MethodResourceObjectives>")
false
This would seem to be impossible, has anyone got a clue what could be happening?