2014年5月23日 星期五

C# 計算累計耗費時間

System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
//引用stopwatch物件

sw.Reset();//碼表歸零

sw.Start();//碼表開始計時

sw.Stop();//碼錶停止

string result1 = sw.Elapsed.Seconds.ToString();

2012年9月5日 星期三

C# 暫停目前的執行緒



System.Threading.Thread.Sleep(1000);// 毫秒
 
 or
 

Thread.Sleep(1000);// 毫秒



 

2012年8月30日 星期四

C# string to byte[]



 String myString="12345678";


 byte[] byteArray = System.Text.Encoding.Default.GetBytes(myString);



C# string to int


1.
int i= Convert.ToInt32("8"); 

 
 
2. 
int i=Int32.Parse("8");
 
 

3.
int i;
Int32.TryParse("8", out i);