Candor.Data.DataRecordExtensions.GetInt32 C# (CSharp) 메소드

GetInt32() 공개 정적인 메소드

Gets a value from a database field value or output parameter.
public static GetInt32 ( object fieldValue ) : int
fieldValue object The value to convert.
리턴 int
        public static int GetInt32(object fieldValue)
        {
            return GetInt32(fieldValue, -1);
        }

Same methods

DataRecordExtensions::GetInt32 ( object fieldValue, int defaultValue ) : int
DataRecordExtensions::GetInt32 ( this record, string name ) : int
DataRecordExtensions::GetInt32 ( this record, string name, int defaultValue ) : int
DataRecordExtensions::GetInt32 ( this record, string name, int defaultValue, bool ignoreErrors ) : int