Azavea.Open.DAO.Util.CachingDataReader.GetInt32 C# (CSharp) Méthode

GetInt32() public méthode

Gets the 32-bit signed integer value of the specified field.
The index passed was outside the range of 0 through .
public GetInt32 ( int i ) : int
i int The index of the field to find.
Résultat int
        public virtual int GetInt32(int i)
        {
            if ((i < 0) || (i >= _numCols))
            {
                throw new ArgumentOutOfRangeException("i", "Column index must be >= 0 and < " + _numCols + ".");
            }
            return Convert.ToInt32(GetCachedValue(i));
        }