I probably got an easy question for you but I haven't got the answer yet.
what I want is:
compare string1 with string2, which I built via a code before (not essential for the question), and if the string2 is not essential, I use a wildcard to fit every string1 in string2.
what I tried is:
string1= "whatever the case may be"
string2= "*"
LikeOperator.LikeString(string1, string2, Microsoft.VisualBasic.CompareMethod.Binary)
My wildcard is not working properly. it doesn't give a "true" back. What am I doing wrong there?