Mono.Debugger.Languages.RelativeTargetLocation.Print C# (CSharp) 메소드

Print() 공개 메소드

public Print ( ) : string
리턴 string
        public override string Print()
        {
            if (offset > 0)
                return String.Format ("[{0}]+0x{1:x}", relative_to.Print (), offset);
            else
                return String.Format ("[{0}]-0x{1:x}", relative_to.Print (), -offset);
        }