public bool MoveNext()
 {
     if (this._firstCall)
     {
         this._firstCall = false;
     }
     else if (this._handle.Value != IntPtr.Zero)
     {
         RuntimeTypeHandle.GetNextIntroducedMethod(ref this._handle);
     }
     return(!(this._handle.Value == IntPtr.Zero));
 }
Example #2
0
 public bool MoveNext()
 {
     if (this._firstCall)
     {
         this._firstCall = false;
     }
     else if (!this._method.IsNullHandle())
     {
         this._method = RuntimeTypeHandle.GetNextIntroducedMethod(this._method);
     }
     return(!this._method.IsNullHandle());
 }