Advertisement
ivanov_ivan

ConvertToBinary

Feb 20th, 2016
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. public static string ConvertToBinary(ulong value)
  2. {
  3.   if(value==0)
  4.   {
  5.     return "0";
  6.   }
  7.   StringBuilder b = new StringBuilder();
  8.  
  9.   while(value!=0)
  10.   {
  11.     b.Insert(0,((value&1)==1) ? '1' : '0');
  12.     value>>=1;
  13.   }
  14.   return b.ToString();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement