Exemplo n.º 1
0
 public CustomFixedWidthField(T value, int length, char paddingChar, CustomFixedWidthFormatDelegate <T> format) : this(value, length, paddingChar)
 {
     Format = format;
 }
Exemplo n.º 2
0
 public AlphamericNachaDataField(string value, int length, CustomFixedWidthFormatDelegate <string> customFormat)
     : this(value, length)
 {
     Format = customFormat;
 }
Exemplo n.º 3
0
 public CustomFixedWidthField(T value, int length, CustomFixedWidthFormatDelegate <T> format) : this(value, length)
 {
     Format = format;
 }