Answers for "byte to binary c#"

C#
0

c# to binary

int value = 8;
string binary = Convert.ToString(value, 2);
// binary to base 10
int value = Convert.ToInt32("1101", 2)
Posted by: Guest on May-30-2020
0

c# code to convert decimal to binary

int  n, i;       
       int[] a = new int[10];     
       Console.Write("Enter the number to convert: ");    
       n= int.Parse(Console.ReadLine());     
       for(i=0; n>0; i++)      
        {      
         a[i]=n%2;      
         n= n/2;    
        }      
       Console.Write("Binary of the given number= ");      
       for(i=i-1 ;i>=0 ;i--)      
       {      
        Console.Write(a[i]);      
       }
Posted by: Guest on May-10-2020
0

byte to binary c#

string s = string.Join( " ",
        MESSAGE.Select( x => Convert.ToString( x, 2 ).PadLeft( 8, '0' ) ) );
Posted by: Guest on August-16-2020

C# Answers by Framework

Browse Popular Code Answers by Language