예제 #1
0
 public T[] getList <T>(int columnIndex)
 {
     try
     {
         return(ParseUtil.getList <T>(getColumnValue(columnIndex), arrayDelimiter));
     } 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[] getList(int columnIndex)
 {
     return(ParseUtil.getList(getColumnValue(columnIndex), arrayDelimiter));
 }