Intrinsic Base 10 - Base 2 function

  • Thread starter Thread starter Ick
  • Start date Start date
I

Ick

Is an intrinsic function available in either VB or C# that converts a base
10 long to base 2? I can do the math, but it seems liek a huge klooj
 
Ick said:
Is an intrinsic function available in either VB or C# that converts a base
10 long to base 2? I can do the math, but it seems liek a huge klooj

Have a look at the 'Convert.ToInt32' method. There is one overload
available that allows you to specify a base.
 
Back
Top