Example #1
0
 /// <summary>Creates an elements with the given value parsed with the givn composite seperator</summary>
 /// <param name="value">EDI formatted element either a value or collection of composite element values</param>
 /// <param name="formattingOptions">The formatting options</param>
 public Element(string value, FormattingOptions formattingOptions)
 {
     FormattingOptions = formattingOptions;
     Parse(value, FormattingOptions);
 }
Example #2
0
 public Segment(string value, FormattingOptions options) => Parse(value, options);