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

MonoVariableLocation() private method

private MonoVariableLocation ( bool is_regoffset, Register register, long regoffset, bool is_byref ) : System
is_regoffset bool
register Register
regoffset long
is_byref bool
return System
        MonoVariableLocation(bool is_regoffset, Register register,
				      long regoffset, bool is_byref)
        {
            this.is_regoffset = is_regoffset;
            this.register = register;
            this.regoffset = regoffset;
            this.is_byref = is_byref;
        }