Beispiel #1
0
 public ISymUnmanagedMethod GetMethodFromDocumentPosition(ISymUnmanagedDocument document, uint line, uint column)
 {
     return(ISymUnmanagedMethod.Wrap(this.WrappedObject.GetMethodFromDocumentPosition(document.WrappedObject, line, column)));
 }
Beispiel #2
0
 public ISymUnmanagedMethod GetMethod(uint token)
 {
     return(ISymUnmanagedMethod.Wrap(this.WrappedObject.GetMethod(token)));
 }
Beispiel #3
0
 public ISymUnmanagedMethod GetMethodByVersion(uint token, int version)
 {
     return(ISymUnmanagedMethod.Wrap(this.WrappedObject.GetMethodByVersion(token, version)));
 }
        public override bool Equals(object o)
        {
            ISymUnmanagedMethod casted = o as ISymUnmanagedMethod;

            return((casted != null) && (casted.WrappedObject == wrappedObject));
        }