Mono.Debugger.Languages.BitfieldTargetLocation.BitfieldTargetLocation C# (CSharp) Method

BitfieldTargetLocation() public method

public BitfieldTargetLocation ( TargetLocation relative_to, int offset, int size ) : System
relative_to TargetLocation
offset int
size int
return System
        public BitfieldTargetLocation(TargetLocation relative_to, int offset, int size)
        {
            this.relative_to = relative_to;
            this.bit_offset = offset;
            this.bit_size = size;
        }