当前位置:编程学习 > C#/ASP.NET >>

c# for循环

现在有以下语句,tcount是一个整形变量,比如说tcount=12,当i=9时,执行完,赋值语句a[i] = i;然后执行i++,执行完后,i的值怎么不是10,而是a呢?请问为什么?
for(i=0;i<tcount;i++)
{
 a[i] = i;
}
我知道了原因,可是怎样换为10进制呢? --------------------编程问答-------------------- 执行i++,后置后加,i的值等于10
怎么转换为10进制:

int i = 13;
                string a = i.ToString("x");
                int b = System.Int32.Parse(a, System.Globalization.NumberStyles.HexNumber);
--------------------编程问答-------------------- 同意楼上的。 --------------------编程问答-------------------- 一贴多发 --------------------编程问答--------------------
Response.Write("right");
--------------------编程问答-------------------- System.Int32.Parse(count, System.Globalization.NumberStyles.HexNumber); --------------------编程问答--------------------
引用 5 楼 yagebu1983 的回复:
System.Int32.Parse(count, System.Globalization.NumberStyles.HexNumber);
--------------------编程问答-------------------- UP...发了3贴..- -!
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,