我需要根据字段的位置和长度来创建文本输出。例如
Position | Length |FieldName |Comments 1 | 2 | Code |1-2 eg:00 3 | 1 |Filler |3 space filled
我创建文本文件时必须满足以上要求的代码和填充符的值来自一个类
object o1 = "00";
object o2 = "00000";
Console.WriteLine("\"" + o1.ToString().PadLeft(8) + "\"");
Console.WriteLine("\"" + o2.ToString().PadRight(8) + "\"");
Console.ReadLine();