I'm trying to check if any string entered after a certain message I do have a working version in SQL that I want to use almost the same one in C#
Usage in SQL:
ELSE IF @Msg LIKE '/Message %'
Usage in C#:
else if (Msg == "/Message ")
I want the tool to check if any string entered right after /Message.
Thanks in advance :)