예제 #1
0
        public static CString Create(object value)
        {
            String  newValue   = Convert.ToString(value);
            CString Customtype = new CString(newValue);

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

            return(Customtype);
        }
예제 #3
0
        public static CString Create(String value)
        {
            CString Customtype = new CString(value);

            return(Customtype);
        }