在.net framework中,system.convert类中提供了较为全面的各种类型、数值之间的转换功能。其中的两个方法可以轻松的实现各种进制的数值间的转换:
convert.toint32(string value, int frombase):
可以把不同进制数值的字符串转换为数字,其中frombase参数为进制的格式,只能是2、8、10及16:
如convert.toint32(”0010”,2)执行的结果为2;
convert.tostring(int value, int tobase):
可以把一个数字转换为不同进制数值的字符串格式,其中tobase参数为进制的格式,只能是2、8、10及16:
如convert.tostring(2,2)执行的结果为”0010”
现在我们做一个方法实现各种进制间的字符串自由转换:选把它转成数值型,然后再转成相应的进制的字符串:
public string convertstring(string value, int frombase, int tobase)
{
int intvalue = convert.toint32(value, frombase);
return convert.tostring(intvalue, tobase);
}
其中frombase为原来的格式
tobase为将要转换成的格式
新闻热点
疑难解答