Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.Collections.Generic;using System.Text;namespace Exam.BLL{ /**//// <summary> /// 協助產生隨機數類 /// </summary>
Time of Update: 2018-12-07
using System;using System.Threading;using System.Runtime.Remoting.Proxies;using System.Runtime.Remoting.Messaging;using System.Runtime.Remoting;namespace ConsoleApplication1{ public interface ICalculator { double Add(double x, double y);
Time of Update: 2018-12-07
站在巨人的肩膀上看到部落格園在轟轟烈烈地討論程式員的基礎/基本功問題,正好在devlicio.us上看到Billy McCafferty撰寫的《站在巨人的肩膀上》一文,推薦一下:Standing on the Shoulders of
Time of Update: 2018-12-07
CodeCode highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
很多人都研究過petshop,我開始認識分層架構也是從研究這個petshop開始的。但是我發現很多人一談三層架構就是petshop那一套東西。實體類,DAL,BLL那一套東西。首先我不否認petshop這個架構整體的設計的合理性。但是這個合理性也是在一定的項目環境下來說的。我覺得petshop這個架構只適合比較小的項目。系統的大部分需求只是對資料庫的CRUD操作。而且商務邏輯變化變化可能性很小的情況。
Time of Update: 2018-12-07
第1章 緒論1.1
Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> /// <summary> /// 發送post請求 /// </summary> /// <param name="url">請求的url</param> /// <param name="postString">
Time of Update: 2018-12-07
操作方法吧excel當成資料庫就行了。sheet就是表!然後寫sql 語句,create table ..insert into ,update ,select ..whaterver..Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
文章目錄 ContentsIntroduction1. Problem2. Perspective3. CRC Cards4. Experience 5. ConclusionReferencesAppendix A Laboratory For TeachingObject-Oriented ThinkingA Laboratory For Teaching Object-Oriented ThinkingKent Beck,
Time of Update: 2018-12-07
2.1
Time of Update: 2018-12-07
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head> <title>無標題頁</title> </head><body&
Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.Collections.Generic;using System.Linq;using System.Text;using NUnit.Framework;using System.Reflection;namespace Com.xxx.Utils{
Time of Update: 2018-12-07
如果捕獲到一個異常,到底是如何重新拋出。 catch (Exception e) { throw; } 還是 catch (Exception e) { throw e; }throw;會保留原始的異常棧資訊。這樣方便調試很容易找到出錯的行號throw e 會雖然異常資訊都保留了,但是會修改異常堆棧資訊,throw e那個行就會成為出錯的行.而不是你try裡面調用的代碼時候實際的出錯行了。so,一般情況下重新拋出異常應該使用throw;.什麼時候使用throw
Time of Update: 2018-12-07
NET Framework 允許您非同步呼叫任何方法。定義與您需要調用的方法具有相同簽名的委託;公用語言運行庫將自動為該委託定義具有適當簽名的 BeginInvoke 和 EndInvoke 方法。BeginInvoke 方法用於啟動非同步呼叫。它與您需要非同步執行的方法具有相同的參數,只不過還有兩個額外的參數(將在稍後描述)。BeginInvoke 立即返回,不等待非同步呼叫完成。BeginInvoke 返回 IasyncResult,可用於監視調用進度。EndInvoke
Time of Update: 2018-12-07
如何在網上尋找免費電子書常有一些網友問我如何在網上尋找可下載的免費電子書。首先我要說的是,並非所有圖書都可以在網上免費下載,能免費下載的是少數,一般而言,暢銷書、電腦類圖書比較多。下面介紹幾種常用的免費圖書尋找辦法:1,免費圖書網站尋找平時上網時注意收藏一些免費電子書的網站。比如52ebook 、blueportal 當然還有原版圖書免費下載站等等。這些網站本身都帶有站內搜尋可以檢索看是否有你需要的書,或者你用搜尋引擎來搜,比如c++
Time of Update: 2018-12-07
最近公司計劃設計新業務平台架構。資料訪問層架構要使用ibatis.net。頭讓我做些例子給其他同事示範下 ibatis的基本特性。然後評估下看是否使用。本來以後上官方下載NPetshop示範下就行了那。但是官方那個Npetshop用的ibatis.net版本不是最新版的。很鬱悶,只好自己研究文檔自己做了。我做的demo裡面基本涵蓋了ibatis.net
Time of Update: 2018-12-07
在使用jquery和wcf通訊的時候,遇到了通過json傳遞Date對象的問題.通過觀察發現wcf返回到瀏覽器中的json字串 是 "\/Date(1231231323+0800)\/" 形式。前面的數字1231231323是GMT 時區中自1970 年1 月1 日午夜以來按正常時間(非夏令時)經過的毫秒數. 所以可以取出該數字得到Date對象Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
File.ReadAllText (String) 開啟一個文字檔,讀取檔案的所有行,然後關閉該檔案。 File.ReadAllText (String, Encoding) 開啟一個檔案,使用指定的編碼讀取檔案的所有行,然後關閉該檔案File.WriteAllText (String, String) 建立一個新檔案,在其中寫入指定的字串數組,然後關閉該檔案。如果目標檔案已存在,則改寫該檔案。
Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->'***********************************************************'刪除函數'************************************************************Private Sub Delete_Click()
Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter