Пример #1
0
        public static CInt32 Create(object value)
        {
            Int32  newValue   = Convert.ToInt32(value);
            CInt32 Customtype = new CInt32(newValue);

            return(Customtype);
        }
Пример #2
0
        public static CInt32 Create(IDataReader row, String name)
        {
            CInt32 Customtype = new CInt32(row[name]);

            return(Customtype);
        }
Пример #3
0
        public static CInt32 Create(Int32 value)
        {
            CInt32 Customtype = new CInt32(value);

            return(Customtype);
        }