예제 #1
0
 public static bool[] ToBitsArray(this byte b)
 {
     return(Convert.IntToBitsArray(b, 8));
 }
예제 #2
0
 public static bool[] ToBitsArray(this short s, byte size)
 {
     return(Convert.IntToBitsArray(s, size));
 }