コード例 #1
0
ファイル: CString.cs プロジェクト: Mike94/UCS_ARQSOFT_001
        public static CString Create(object value)
        {
            String  newValue   = Convert.ToString(value);
            CString Customtype = new CString(newValue);

            return(Customtype);
        }
コード例 #2
0
ファイル: CString.cs プロジェクト: Mike94/UCS_ARQSOFT_001
        public static CString Create(IDataReader row, String name)
        {
            CString Customtype = new CString(row[name]);

            return(Customtype);
        }
コード例 #3
0
ファイル: CString.cs プロジェクト: Mike94/UCS_ARQSOFT_001
        public static CString Create(String value)
        {
            CString Customtype = new CString(value);

            return(Customtype);
        }