Mono.Debugger.Languages.Mono.MonoVariable.GetLocation C# (CSharp) Method

GetLocation() public method

public GetLocation ( StackFrame frame ) : TargetLocation
frame StackFrame
return TargetLocation
        public TargetLocation GetLocation(StackFrame frame)
        {
            return (TargetLocation) frame.Thread.ThreadServant.DoTargetAccess (
                delegate (TargetMemoryAccess target)  {
                    return GetLocation (frame, target);
            });
        }

Same methods

MonoVariable::GetLocation ( StackFrame frame, TargetMemoryAccess target ) : TargetLocation