int [] A = new int [ 3 ];
byte [] B = new byte [ 3 ];
A[ 0 ] = 0x12345678 ;
Buffer . BlockCopy(A, 0 , B, 0 , 3 );
Text = B[ 0 ] . ToString( "X" );