public override bool Equals(object o)
        {
            ICorDebugAssembly casted = o as ICorDebugAssembly;

            return((casted != null) && (casted.WrappedObject == wrappedObject));
        }
 public void ResolveAssembly(uint tkAssemblyRef, ref ICorDebugAssembly ppAssembly)
 {
     Interop.CorDebug.ICorDebugAssembly ref_ppAssembly = ppAssembly.WrappedObject;
     this.WrappedObject.ResolveAssembly(tkAssemblyRef, ref ref_ppAssembly);
     ppAssembly = ICorDebugAssembly.Wrap(ref_ppAssembly);
 }