摘要:
public void ConvertIDToNameForDataTable(DataTable dt, string srcColName, Type enumType) { dt.Columns.Add(new DataColumn(srcColName + "Name")); dt.Rows[0][srcColName + "Name"] = Enum.GetName(enumType, (int)dt.Rows[0][srcColName]); } 阅读全文