예제 #1
0
 public static string ToString(BitVector16.Section value)
 {
     return("Section{0x" + Convert.ToString(value.Mask, 0x10) + ", 0x" + Convert.ToString(value.Offset, 0x10) + "}");
 }
예제 #2
0
 public bool Equals(BitVector16.Section obj)
 {
     return((obj.mask == this.mask) && (obj.offset == this.offset));
 }