Как использовать trim для datagrid в C#?
Привет,
Я получаю ответ.
'object' does not contain a definition for 'Trim' and no extension method 'Trim' accepting a first argument of type 'object' could be found (are you missing a using directive or an assembly reference?)ошибка в этой строке:
SourcePageFile = SourceFolder + "\\pg-" + Convert.ToDecimal(DataGridView1.Rows[irow].Cells[0].Value.Trim(' ')) - 1 + ".jpg";
Это преобразованный код из Visual Basic, который выглядит следующим образом:
SourcePageFile = SourceFolder & "\pg-" & CInt(Trim(DataGridView1.Rows(irow).Cells(0).Value)) - 1 & ".jpg"
Как мне успешно выполнить синтаксис, чтобы избавиться от этой ошибки?
Пожалуйста помочь.
С уважением
Аман Чаурасия
Что я уже пробовал:
Я попробовал следующее:
SourcePageFile = SourceFolder + "\\pg-" + Convert.ToDecimal(DataGridView1.Rows[irow].Cells[0].Value.Trim(' ')) - 1 + ".jpg"
SourcePageFile = SourceFolder + "\\pg-" + Convert.ToInt32(DataGridView1.Rows[irow].Cells[0].Value.Trim(' ')) - 1 + ".jpg"
SourcePageFile = SourceFolder + "\\pg-" + Convert.ToUInt32(DataGridView1.Rows[irow].Cells[0].Value.Trim(' ')) - 1 + ".jpg"
SourcePageFile = SourceFolder + "\\pg-" + Convert.ToString(DataGridView1.Rows[irow].Cells[0].Value.Trim(' ')) - 1 + ".jpg"