Metodo contains della classe string
http://msdn2.microsoft.com/en-us/lib....contains.aspx
MSDN riporta quest'esempio che sembra fare al caso tuo!
string s1 = "The quick brown fox jumps over the lazy dog";
string s2 = "fox";
bool b;
b = s1.Contains(s2);
Console.WriteLine("Is the string, s2, in the string, s1?: {0}", b);
![]()