Exemple #1
0
        public static CInt64 Create(object value)
        {
            Int64  newValue   = Convert.ToInt64(value);
            CInt64 Customtype = new CInt64(newValue);

            return(Customtype);
        }
Exemple #2
0
        public static CInt64 Create(IDataReader row, String name)
        {
            CInt64 Customtype = new CInt64(row[name]);

            return(Customtype);
        }
Exemple #3
0
        public static CInt64 Create(Int64 value)
        {
            CInt64 Customtype = new CInt64(value);

            return(Customtype);
        }