Как преобразовать значение datagridview в значение datetime?
hello can anyone help me here i got this code DateTime d1; DateTime d2; for(int i=0;i<dataGridView1.RowCount-1;i++) { d1 = Convert.ToDateTime(dataGridView1.Rows[i].Cells[2].Value); d2 = Convert.ToDateTime(dataGridView1.Rows[i].Cells[1].Value); TimeSpan ts = d1 - d2; dataGridView1.Rows[i].Cells[3].Value = ts.Days; } but it seems that i'm doing it wrong the error says 'String was not recognized as a valid DateTime'. and i also had this code to be appeared in my datagridview dataGridView1.ColumnCount = 4; dataGridView1.Columns[0].Name = "Book"; dataGridView1.Columns[1].Name = "Borrowed date"; dataGridView1.Columns[2].Name = "Delivered date"; dataGridView1.Columns[3].Name = "Time Span"; dataGridView1.Rows.Add("Book 1", "13.01.2018", "20.01.2018"); dataGridView1.Rows.Add("Book 2", "05.03.2018", "13.03.2018"); dataGridView1.Rows.Add("Book 3", "20.04.2018", "15.05.2018");
Что я уже пробовал:
i tried to look in stack overflow but i just get the same converting method