dtをExcelのA2セルに貼り付ける際に、各行の先頭1文字を削除したい

@gorby A recommendation, in case you are using For Each.
You can avoid the loope and use → Data table Columns Expressions. These expressions eliminate the need for loops by automatically updating the values of all rows.
Example:
myDataColumn.Expression = “SUBSTRING(phone, 2, LEN(phone) - 1)”

System.Data.DataColumn.Expression property - .NET | Microsoft Learn