C# 几进制 转换到几进制

public string ConvertString(string value, int fromBase, int toBase) 



int intValue = Convert.ToInt32(value, fromBase); 

return Convert.ToString(intValue, toBase); 


其中fromBase为原来的格式 

toBase为将要转换成的格式

posted @ 2018-12-21 12:09  慢慢摸索  阅读(194)  评论(0)    收藏  举报