如果我理解正确,我有一个分配了 int 值的枚举列表。我需要保留前导 0,所以有没有办法将此值视为字符串而不是 int?
我的枚举
public enum CsvRowFormat
{
BeginningOfFile = 01,
School = 02,
Student = 03,
EndOfFile = 04
}
目前我正在读出这样的值,我发现它效率低下
studentRowFormat.AppendFormat("0{0}",(int)TransactionFile.CsvRowFormat.Student).ToString();