Exemplo n.º 1
0
 internal override void parse(string str, ref int pos, ReleaseVersion release, int len, ConcurrentDictionary <int, BaseClassIfc> dictionary)
 {
     base.parse(str, ref pos, release, len, dictionary);
     HorizontalWidths = ParserSTEP.StripBool(str, ref pos, len);
     Widths.AddRange(ParserSTEP.StripListDouble(str, ref pos, len));
     Slopes.AddRange(ParserSTEP.StripListDouble(str, ref pos, len));
     Tags.AddRange(ParserSTEP.SplitListStrings(ParserSTEP.StripField(str, ref pos, len)).ConvertAll(x => ParserIfc.Decode(x)));
 }