Mono.Debugger.Languages.BitfieldTargetLocation.BitfieldTargetLocation C# (CSharp) Метод

BitfieldTargetLocation() публичный Метод

public BitfieldTargetLocation ( TargetLocation relative_to, int offset, int size ) : System
relative_to TargetLocation
offset int
size int
Результат System
        public BitfieldTargetLocation(TargetLocation relative_to, int offset, int size)
        {
            this.relative_to = relative_to;
            this.bit_offset = offset;
            this.bit_size = size;
        }