Esempio n. 1
0
        public override SourceLocation GetFileAndLineNumber()
        {
            if (m_type == ClrStackFrameType.Runtime)
            {
                return(null);
            }

            ClrMethod method = Method;

            if (method == null)
            {
                return(null);
            }

            return(method.GetSourceLocationForOffset(m_ip - method.NativeCode));
        }