コード例 #1
0
        public static CInt16 Create(object value)
        {
            Int16  newValue   = Convert.ToInt16(value);
            CInt16 Customtype = new CInt16(newValue);

            return(Customtype);
        }
コード例 #2
0
        public static CInt16 Create(IDataReader row, String name)
        {
            CInt16 Customtype = new CInt16(row[name]);

            return(Customtype);
        }
コード例 #3
0
        public static CInt16 Create(Int16 value)
        {
            CInt16 Customtype = new CInt16(value);

            return(Customtype);
        }