标签:for color div family code ++ ica als toc
out 参数的练习,自己定义的TryParse()。。。
一开始写错了,错在:判断str[i] >= ‘0‘&& str[i]<=‘9‘时,把str[i]当数字去判断了。。。
static bool MyTryParse(string s, out int re) { re = 0; char[] str = s.ToCharArray(); for (int i=0; i<str.Length; i++) {
if ((str[i]>=‘0‘ && str[i]<=‘9‘) == false) { return false; } } re = int.Parse(s); return true; }
标签:for color div family code ++ ica als toc
原文地址:http://www.cnblogs.com/bingxing/p/6347784.html