What is the difference between these two? If I use one or the other when adding or updating a strongly typed DataTable's DataRow, will there be any difference in the result?
I can't find an explanation in any MSDN page.
I can't find an explanation in any MSDN page.
Code:
_row.SetField("FieldName", "A value")
_row("FieldName") = "A value"