S
Shapper
Hello,
I have the following:
String.Equals(a.Author, "CamÕes",
StringComparison.InvariantCultureIgnoreCase);
However a.Author has more than one word. So what I was really looking
for is something like:
a.Author.Contains("CamÕes",
StringComparison.InvariantCultureIgnoreCase);
How can I do this?
Thank you,
Miguel
I have the following:
String.Equals(a.Author, "CamÕes",
StringComparison.InvariantCultureIgnoreCase);
However a.Author has more than one word. So what I was really looking
for is something like:
a.Author.Contains("CamÕes",
StringComparison.InvariantCultureIgnoreCase);
How can I do this?
Thank you,
Miguel