Как найти имя столбца с индексом столбца в DataGridView

String name = dataGridView1.Columns[dataGridView1.CurrentCell.ColumnIndex].Name;
Mappy Show