Conversion from bin to oct,dec and hex

  • Thread starter Thread starter Roman
  • Start date Start date
R

Roman

Hello,

I am looking for the code in c# to conversion bin to oct,dec and hex in all
directions.


Roman
 
Hi Roman,

You might want to use Convert.ToString(int, base) and
Convert.ToInt32(string, base) to pass values in various bases.
 
Back
Top