WebApplications.Testing.Data.ObjectRecord.GetFieldType C# (CSharp) Method

GetFieldType() public method

public GetFieldType ( int i ) : Type
i int
return System.Type
        public Type GetFieldType(int i)
        {
            if ((i < 0) ||
                (i > FieldCount))
                throw new IndexOutOfRangeException(i.ToString(CultureInfo.InvariantCulture));
            return _recordSetDefinition[i].ClassType;
        }