C# 几进制 转换到几进制

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



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

return Convert.ToString(intValue, toBase); 


其中fromBase为原来的格式 

toBase为将要转换成的格式string

相关文章
相关标签/搜索