Candor.Data.DataRecordExtensions.GetDateTime C# (CSharp) Method

GetDateTime() public static method

Gets a value from a database field value or output parameter.
public static GetDateTime ( object fieldValue ) : System.DateTime
fieldValue object The value to convert.
return System.DateTime
        public static DateTime GetDateTime(object fieldValue)
        {
            return GetDateTime(fieldValue, DateTime.MinValue);
        }

Same methods

DataRecordExtensions::GetDateTime ( object fieldValue, System.DateTime defaultValue ) : System.DateTime
DataRecordExtensions::GetDateTime ( this record, string name ) : System.DateTime
DataRecordExtensions::GetDateTime ( this record, string name, System.DateTime defaultValue ) : System.DateTime
DataRecordExtensions::GetDateTime ( this record, string name, System.DateTime defaultValue, bool ignoreErrors ) : System.DateTime