程式設計師的地下兵工廠

一個由幾名程式設計師發起, 用來分享書籤的地方... 如果您對程式設計也有興趣, 或是樂於分享技術文章的連結, 也歡迎您加入!
小提示: 要快速找到需要的書籤嗎?點左側分類,畫面會先出現該分類下相關的標籤雲。再點標籤之後,即會幫你精準找到「分類」+「標籤」交集過後的書籤。也可以用下方功能列中之收推、討論或熱門等方式加以排序喔
瀏覽模式
書籤標題
收藏時間
Image-not-available

Johnny 收藏於 2010/10/15

Design Pattern 通常都是由許多人推薦的軟體架構模式, 而且有其固定的規則可循。我們可以把一些素有口碑的設計樣式拿來套用在某種情境之下, 但是我十分反對為套用 Design Pattern 而套用 Design Pattern。應該是反過來, 我們最好事先評估自己的情境適合應用何種 Design Pattern, 再來決定是否套用某種 Design Pattern, 不然就會流於削足適履...

完整
2010/10/15
Image-not-available

MSN機器人 收藏於 2008/11/13

3分鐘學會使用程式發送msn訊息,dotNet C#篇(二)

3分鐘學會使用程式發送msn訊息,dotNet C#篇(二)

完整
2008/11/13
975600

wellwind 收藏於 2008/04/13

抓取應用程式、檔案或資料夾的ICON

  • Tag-round 標籤: icon c#
  • Group-round 群組:
完整
2008/04/13
517870

Evan Lin 收藏於 2007/04/18

This tool allows you to inspect (or "peep at") the RAW HTTP response of a URL. You can build the request using the settings form (including POST variables, user agent etc.). I initially made this tool a couple of years ago, and it continued to be extremely useful, so I improved it over time, and resolved the main bugs. This app is a work in progress, but if I wait till I'm "finished", this code will never get posted - you know how it goes with side-projects. I hope that in the mean time people will find this useful as is.

利用 C Sharp 製作一個偷看"Peep" 的程式~~ 可以去網路上抓下任何圖片或是資料

完整
2007/04/18
0

Evan Lin 收藏於 2007/04/13

全域組件快取是電腦層級的存放區,用來保留組件,準備讓電腦上的許多應用程式來共用。.NET Framework 提供兩個工具來使用快取。一個是 Windows Shell Extension,允許您以圖形使用者介面 (GUI) 和快取搭配使用。另一個是命令列工具,稱為全域組件工具 (Gacutil.exe),通常用於建置和測試指令碼。命令列工具稱為全域組件快取工具 (Gacutil.exe)。

C# .NET 的code 可以用這個讓你的執行速度變的快一點~~ 相對的~~你也必須付出版本比對的effort

完整
2007/04/13
511813

Evan Lin 收藏於 2007/04/12

I was looking for a Blogger.com client for my Pocket PC, but unfortunately, I was not satisfied with any of the applications that I had found. So, I decided to develop one myself. I started by developing an independent .NET API for interacting with Blogger.com. This is presented here. This component, which I have named NBlog, allows any .NET application to simply perform different operations against Blogger.com without any knowledge of the underlying communication protocols. NBlog uses the new Blogger Atom API as the main communication protocol. However, being designed with extensibility in mind, it allows for implementations of any other Blogger-supported protocol to be added. These new implementations can then be plugged into the existing applications by using a simple configuration setting. To show how NBlog can be used within an application, I've also developed a simple Windows Forms Blogger client. The image at the top is a screenshot from this application.

簡單使用Blogger Atom API的C#程式

完整
2007/04/12
491996

Evan Lin 收藏於 2007/03/22

關於C#上面使用MFC DLL的問題

關於C#上面使用MFC DLL的問題

  • Tag-round 標籤: mfc c#
  • Group-round 群組:
完整
2007/03/22
492768

Evan Lin 收藏於 2007/03/21

This step-by-step article describes how to call a managed DLL from native C++ code. To do this, create a simple managed DLL by using Microsoft Visual C# .NET or Microsoft Visual C# 2005, and then call this managed DLL from native C++ code.

教導如何在VC8裡面去呼叫manage DLL

完整
2007/03/21
350172

倫倫3號 收藏於 2006/12/27

.Net Framework 2.0所提供的開發環境中,提供了簡單的方式讓你用非同步的方法呼叫Web Services 參考資料中有微軟的範例,但它的做法如果用在連續呼叫的話可能會有些問題,而且沒有C#的範例,所以我稍做修改成我需要的版本

這是我第一次寫C#的程式,因為我想順便體驗C#開發起來有何不同,我在查資料時,還有看到ASP.Net的網頁也可以設為Async,不過會有什麼結果我沒試過,下回有空再寫寫札記吧

完整
2006/12/27
300359

elleryq 收藏於 2006/10/20

We know that C# keywords are simply programming language (in this case, C#) lingo that map into the .NET framework types, objects, etc. So, what does the ‘lock’ keyword map to? Through the simple use of ildasm tool, you can see that the lock keyword ends up being a call to System.Threading.Monitor.Enter/Exit.

完整
2006/10/20
295255

elleryq 收藏於 2006/10/16

Ever since my post about Converting Flash Shapes to WPF, I've been asked about the BitReader class that I mentioned. That class has since been replaced by a much more specialized class called SWFReader. As you can probably tell by the name, it's job is to make it easier to read Adobe/Macromedia Flash (SWF) files and their associated data types. If you're unfamiliar with the contents of a SWF file, you should check out A Concise Guide to the SWF File Format and Alexis' SWF Reference. Both are excellent resources.

完整
2006/10/16
278333

elleryq 收藏於 2006/10/05

多线程程序应该避免在一个worker thread里直接改动GUI的内容和对象(注:I believe .NET runtime will now throw an exception if you actually do that.)

完整
2006/10/05