C# int 바이트 변환 Byte 배열 3비트

600 단어 C#
C# C 언어 쓰기
 public byte[] GetByteByPoint(int point)
        {
            byte[] array = new byte[3];


            array[0] = Convert.ToByte((point & 0xff0000) >> 16);
            array[1] = Convert.ToByte((point & 0xff00) >> 8);
            array[2] = Convert.ToByte(point & 0xff);


            return array;
        }

3바이트 0XFF000을 필터로 반환
C# 구현
   
4
public byte[] GetByteByPoint1(int point) 
        {
            return BitConverter.GetBytes(System.Net.IPAddress.HostToNetworkOrder(point));
        }
4위 복귀

좋은 웹페이지 즐겨찾기