Ejemplo n.º 1
0
        public static CString Create(object value)
        {
            String  newValue   = Convert.ToString(value);
            CString Customtype = new CString(newValue);

            return(Customtype);
        }
Ejemplo n.º 2
0
        public static CString Create(IDataReader row, String name)
        {
            CString Customtype = new CString(row[name]);

            return(Customtype);
        }
Ejemplo n.º 3
0
        public static CString Create(String value)
        {
            CString Customtype = new CString(value);

            return(Customtype);
        }