View Single Post
  #3 (permalink)  
Old 07-21-2007, 01:51 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Thumbs up Re: Decimal to any number system

Hi.....

.Net have lot of functions like these...... ".Net is an Ocean"

below few examples........

Converting decimal to binary in C#.NET
int a = 12;
MessageBox.Show(Convert.ToString(a, 2));

Converting decimal to octal in C#.NET
int a = 12;
MessageBox.Show(Convert.ToString(a, 8));

Converting decimal to HexaDecimal in C#.NET
int a = 12;
MessageBox.Show(Convert.ToString(a, 16));
Reply With Quote