这是我的问题。我正在尝试获取我的数据表的全名字段并将名称拆分为第一个和最后一个,然后将这些名称添加回我的数据表中的正确位置。到目前为止,这就是我所拥有的。
DataTable DBTable = LoadMailingListContent(Location);
List<string> fullNames = DBTable.Rows.OfType<DataRow>().Select(dr => dr.Field<string>(columnName)).ToList();
DBTable.Columns.Remove(columnName);
DBTable.Columns.Add("First Name");
DBTable.Columns.Add("Last Name");
foreach (string fullname in fullNames)
{
var names = fullname.Split(' ');
string firstName = names[0];
string lastName = names[1];
//here is where I want to add the new name values into their new fields
}
我可以在我的 foreach 循环中设置一个计数器并根据行的索引重新添加名称吗?我需要有关如何将新的名字和姓氏值添加回新字段的帮助。
谢谢