ATMLDataAccessLibrary.db.beans.BASEBean.getDouble C# (CSharp) Method

getDouble() private method

private getDouble ( Object value ) : Double?
value Object
return Double?
        private Double? getDouble( Object value )
        {
            if (value != null)
            {
                if (value is double)
                    return (Double) value;
                return null;
            }
            return null;
        }