Azavea.Open.DAO.CSV.CsvDataReader.GetName C# (CSharp) 메소드

GetName() 공개 메소드

Gets the name for the field to find.
The index passed was outside the range of 0 through .
public GetName ( int i ) : string
i int The index of the field to find.
리턴 string
        public override string GetName(int i)
        {
            // We operate entirely based on the mapping, since CSV files have almost no useful metadata.
            return Mapping.AllDataColsInOrder[i];
        }