c#为什么我得到没有小数的double值(从object转换为double)

时间:2018-02-27 12:46:02

标签: c# object datagridview decimal

我想从我的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);
      ...
    }

0 个答案:

没有答案