- Nov 17 Wed 2010 10:15
C# TcpClient record
- Nov 16 Tue 2010 19:53
Game 社交遊戲必須具備的10大基本元素
在虛擬交易峰會倫敦站上,GameDuell聯合創始人Michael Kalkowski向開發者和用戶剖析了facebook排名前25款社交遊戲共有的一些基本元素,而這些可以用以協助其他的開發者提高他們在社交遊戲領域的虛擬成交額度。
畢竟虛擬交易所創造的收益是社交遊戲目前營收的主要途徑,據Michael Kalkowski分析現在整體遊戲的虛擬營收總值將高達750億美元。
- Nov 10 Wed 2010 17:44
C++ inline
inline 這個關鍵字是使用在function前面
inline 所宣告的function並不會有程式本體
- Nov 10 Wed 2010 16:39
C++ *.lib 和 *.dll 有什麼區別?
*.lib 和 *.dll 有什麼區別?
- Nov 05 Fri 2010 16:35
C# 取得版本 record
string[] 版號 = Application.ProductVersion.Split('.');
string 版本 = 版號[0] + "." + 版號[1] + "." + 版號[2];
- Nov 03 Wed 2010 14:40
C# Key record
You have a TextBox control on your Windows Forms application and need to detect Enter. The TextBox allows your users to type letters into it, and you need to detect when a certain key is pressed. Our solution involves the KeyDown event in our C# Windows Form. We use the KeyDown event for our code.
Using KeyDown event
Open designer and click on TextBox. In the Visual Studio 2008 designer, click on your TextBox control in the form display. You will see the Properties Pane. Next, click on the lightning bolt icon. This icon stands for events. In the event tab, scroll to KeyDown, and double click in the space to the right. New code like that highlighted below will appear.
- Nov 03 Wed 2010 13:45
C# ToString 格式 record
C#:
前面補0的數字字串
- Nov 01 Mon 2010 17:28
C# Dictionary用法 record
Dictionary<string, object> tagDictionary = new Dictionary<string, object>();
- Oct 28 Thu 2010 23:23
C# 搜尋目錄 record
//=========================================================================================
不取得子目錄的話用這個:
- Oct 28 Thu 2010 12:27
C# lock record
整理一下lock的特性。
1.lock的目標並不是物件,而是程式碼區段,只有被lock包覆的程式區段才會有作用。