首页 > 技术文章 > C# 几进制 转换到几进制

qinweizhi 2018-12-21 12:09 原文

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



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

return Convert.ToString(intValue, toBase); 


其中fromBase为原来的格式 

toBase为将要转换成的格式

推荐阅读