using System; public class Test { public static void Main() { int Address = 0x181BA700; int byte1 = Address >> 24; int byte2 = (Address >> 16) & 0xFF; int byte3 = (Address >> 8) & 0xFF; int byte4 = Address & 0xFF; Console.WriteLine("A: " + byte1.ToString("X") + ", B: " + byte2.ToString("X") + ", C: " + byte3.ToString("X") + ", D: " + byte4.ToString("X")); } }