using System;using System.Collections.Generic;using System.Text;namespace 字串{ class 格式化字串 { public static void Main() { //Console.WriteLine方法其實就是在調用String.Format(靜態),參數是無限的。 //這樣,其實中WriteLine方法中沒有做具體的格式化操作
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 設計模式{ class Program { static void Main(string[] args) { //首先,原型模式是一種建立型模式,用來處理由於new所帶來的依賴關係
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 泛型{ class Array使用泛型委派 { public static void Main() { //C#從2.0開始對Array類的很多方法,提供了泛型委派參數
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace CSharp基礎{ class 委託的協變 { //關於委託方法的傳回型別協變 //定義委託返回Person執行個體 public delegate Person ReturnMyObj(); public static void Main()
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 泛型{ class 泛型介面 { public static void Main() { PersonManager man = new PersonManager(); Person per = new Person();
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace CSharp基礎{ class 對象比較 { public static void Main() { object obj1 = new object(); object obj2 = new object();
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace 字串{ class Regex { public static void Main() { //Regex是用來簡化字串操作的,一般正則所實現的功能,用方法也一樣可以,只是方法有可能就會變的很複雜!
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 集合{ class 有序表 { public static void Main() { //如果要用排好序的表,可以使用SortedList<TKey,TValue>來給元素排序
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading ;namespace 多線程{ class Program { public delegate int TakesAwhileDel ( int data , int ms ) ; static void Main(string[] args)