To Convert a number to a byte array , the developers can use the BitConverter.GetBytes method which returns array of bytes.
How to Convert a Number to Bytes Array in C# ?
Below is a sample code snippet demonstrating how to convert a Number to Byte Array in C# .
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; namespace AbundantcodeConsoleApp { internal class Program { private static void Main(string[] args) { byte[] output = ConvertNumberToByteArray(); Console.ReadLine(); } // Function to Convert a Number to Byte Array private static byte[] ConvertNumberToByteArray() { Int32 Input = 75; byte[] ByteData = BitConverter.GetBytes(Input); return ByteData; } } }
Leave a Reply