Example of the BitConverter.GetBytes( uint ) method. : Convert from string « Data Type « C# / CSharp Tutorial






using System;

class GetBytesUInt32Demo
{
    const string formatter = "{0,16}{1,20}";

    public static void GetBytesUInt32( uint argument )
    {
        byte[ ] byteArray = BitConverter.GetBytes( argument );
        Console.WriteLine( formatter, argument,BitConverter.ToString( byteArray ) );
    }

    public static void Main( )
    {
        GetBytesUInt32( 15 );
    }
}








2.51.Convert from string
2.51.1.New and old way to parse an int
2.51.2.new-style (v2.0) try-parse pattern
2.51.3.Type Conversion Using System.Convert
2.51.4.Using TryParse() in Place of an Invalid Cast Exception
2.51.5.Data type parsing
2.51.6.Convert.ToBase64CharArray() Convert.FromBase64CharArray
2.51.7.Example of the BitConverter.GetBytes( uint ) method.