예제 #1
0
 public T[][] getListGroup <T>(int columnIndex)
 {
     try
     {
         return(ParseUtil.getListGroup <T>(getColumnValue(columnIndex),
                                           arrayDelimiter, innerArrayDelimiter));
     } catch (Exception e)
     {
         throw new ConfigException(
                   string.Format("TxtParser: cannot convert to array at row({0}) and column({1})",
                                 currentRow, columnIndex), e);
     }
 }
예제 #2
0
 public string[][] getListGroup(int columnIndex)
 {
     return(ParseUtil.getListGroup(getColumnValue(columnIndex),
                                   arrayDelimiter, innerArrayDelimiter));
 }