bool Found = false;
object MyCollection
foreach (object MyObject in MyCollection)
{
  if (MyObject.Text == "Hello")
  {
    Found = true;
    return;
  }
}