引数の文字列が、データグリッドに含まれていない場合だけ追加したいんですが、追加されません。
何が原因でしょうか?

void AddToDataGrid(string[] strs)
{
 bool exists = false;

 foreach(string str in strs)
 {
  for(int i = 0; i <= view.Rows.Count; i++)
  {
   if(str == view[0, i].Value.ToString())
    exists = true;
  }
  if(!exists)
  {
   view.Rows.Add(str);
  }
 }
}