- Aug 24 Tue 2010 21:17
C# 委派和事件
- Aug 23 Mon 2010 15:30
C# 取亂數 record
- Aug 22 Sun 2010 23:18
VB和C# 字串比較 record
VB pecial character constants (all also accessible from ControlChars class) |
- Aug 22 Sun 2010 20:45
C# 大樂透對獎程式
- Aug 22 Sun 2010 09:54
C# function 參數參照 record
// Pass by value (in, default), reference (in/out), and reference (out)
void TestFunc(int x, ref int y, out int z) {
- Aug 22 Sun 2010 09:50
C# 分隔分符串 record
class TestStringSplit { static void Main() { char[] delimiterChars = { ' ', ',', '.', ':', '\t' }; string text = "one\ttwo three:four,five six seven"; System.Console.WriteLine("Original text: '{0}'", text); string[] words = text.Split(delimiterChars); System.Console.WriteLine("{0} words in text:", words.Length); foreach (string s in words) { System.Console.WriteLine(s); } } }
- Aug 22 Sun 2010 00:12
C# 字串格式 record
- Aug 21 Sat 2010 22:46
C# 使用VB的Collection集合 record
1.First, add a reference to Microsoft.VisualBasic to your project. You can find the Microsoft.VisualBasic in the list on the .Net tab when you open the Add reference dialog.
- Aug 21 Sat 2010 21:37
C# 隨心所欲產生圖案 record
隨心所欲產生圖案
- Aug 21 Sat 2010 11:00
C# 陣列宣告 record
C# 陣列宣告