CONVERT INT TO BYte c# code example

Example 1: convert system.byte a string c#

string result = System.Text.Encoding.UTF8.GetString(byteArray);

Example 2: c# how to convert string to int

var myInt = int.Parse("123"); // this one throw exception if the argument is not a number
var successfullyParsed = int.TryParse("123", out convertedInt); //this returns true if the convertion has been successfully done (integer is stored in "convertedInt"), otherwise false.

Example 3: c# number to byte

public byte[] ConvertNumToByte(int Number)
{
  byte[] ByteArray = new byte[32];
  string BinString = Convert.ToString(Number, 2);
  char[] BinCharArray = BinString.ToCharArray();
  try
  {
    System.Array.Reverse(BinCharArray);
    if (BinCharArray != null && BinCharArray.Length > 0)
    {
      for (int index = 0; index < BinCharArray.Length; ++index)
      {
        ByteArray[index] = Convert.ToByte(Convert.ToString(BinCharArray[index]));
      }
    }
  }
  catch
  {
  }
  return ByteArray;
}