Esempio n. 1
0
 public static void ParseLine(System.Action hdlParse, string content, ref int curIndex)
 {
     do
     {
         hdlParse.Invoke();
     } while(GDSParseUtils.IsCurCharEquals(GDSParseUtils.ObjectSeparator, content, ref curIndex) && curIndex < content.Length);
 }