[ C# ] String convert to integer or double

用C#把字串轉成int 或double

string source = "1412";
int result = 0;

// 使用Convert.ToInt32(string value);
result = Convert.ToInt32(source);

// 使用Int32.Parse(string value);
result = Int32.Parse(source);

// 使用Int32.TryParse(string s, out int result);
Int32.TryParse(source, out result);


轉Double

string aaa = "1234.12";
double xxx= Convert.ToDouble(aaa);

參考
http://www.cnblogs.com/allenlooplee/archive/2004/11/16/64254.aspx


沒有留言: