Azavea.Open.DAO.Memory.MemoryDataReader.GetName C# (CSharp) Method

GetName() public method

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.
return string
        public override string GetName(int i)
        {
            return Mapping.AllDataColsInOrder[i];
        }