C# 几进制 转换到几进制

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



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

return Convert.ToString(intValue, toBase); 


其中fromBase为原来的格式 

toBase为将要转换成的格式

原文地址:https://www.cnblogs.com/qinweizhi/p/10155028.html