Data gridde seçilen hücrenin,Değeri AHMET se Kırmızı Ali İse Yeşil Olmasını istiyorum.

Sayısal Sisteme Göre Buldum Ama Text'e Göre Arama Lazım

for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
{
Application.DoEvents();
DataGridViewCellStyle renk = new DataGridViewCellStyle();
if (Convert.ToInt32(dataGridView1.Rows[i].Cells["Sonuc"].Value) < 50)
{
renk.BackColor = Color.Red;
}
else if (Convert.ToInt32(dataGridView1.Rows[i].Cells["Sonuc"].Value) >50)
{
renk.BackColor = Color.Green;
}

dataGridView1.Rows[i].DefaultCellStyle = renk;