System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
//引用stopwatch物件
sw.Reset();//碼表歸零
sw.Start();//碼表開始計時
sw.Stop();//碼錶停止
string result1 = sw.Elapsed.Seconds.ToString();
mason chen
2014年5月23日 星期五
2012年9月5日 星期三
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);
訂閱:
文章 (Atom)