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

PrintLocation() public method

public PrintLocation ( StackFrame frame ) : string
frame StackFrame
return string
        public override string PrintLocation(StackFrame frame)
        {
            TargetLocation location = GetLocation (frame);
            if (location == null)
                return null;

            return location.Print ();
        }