我想从我的DataGridView获取对象,这是一个不错的选择。纬度值(例如5.5186)转换为double值。但是我会得到没有小数的55186(来自例子)。我该如何解决这个问题?
private void dataGridView1_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
{
...
double lon = Convert.ToDouble(dataGridView1.Rows[e.RowIndex].Cells[2].Value);
double lat = Convert.ToDouble(dataGridView1.Rows[e.RowIndex].Cells[3].Value);
...
}