Mono.Debugger.Method.SetMethodBounds C# (CSharp) Method

SetMethodBounds() protected method

protected SetMethodBounds ( TargetAddress method_start, TargetAddress method_end ) : void
method_start TargetAddress
method_end TargetAddress
return void
        protected void SetMethodBounds(TargetAddress method_start, TargetAddress method_end)
        {
            this.method_start = method_start;
            this.method_end = method_end;
            this.has_bounds = true;
        }