Mono.Debugger.Languages.Mono.MonoVariable.PrintLocation C# (CSharp) 메소드

PrintLocation() 공개 메소드

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

            return location.Print ();
        }