Posted By

rengber on 03/27/07


Tagged

conversion


Versions (?)



Who likes this?

1 person has marked this snippet as a favorite

umang_nine


Converting Integers To and From Binary


Published in: C# 






Expand | Embed | Plain Text
  1. //To Binary from Integer
  2. int startVal = 7;
  3. int base = 2;
  4. string binary = Convert.ToString(startVal, base);
  5.  
  6. //To Integer From Binary
  7. string binary = "111";
  8. int base = 2;
  9. int integer = Convert.ToInt32(binary, base);

Report this snippet 

You need to login to post a comment.