System.Text.RegularExpressions.CaptureCollection.GetEnumerator C# (CSharp) Method

GetEnumerator() public method

public GetEnumerator ( ) : System.Collections.IEnumerator
return System.Collections.IEnumerator
        public System.Collections.IEnumerator GetEnumerator()
        {
            throw null;
        }

Usage Example

 static public int GetEnumerator(IntPtr l)
 {
     try {
         System.Text.RegularExpressions.CaptureCollection self = (System.Text.RegularExpressions.CaptureCollection)checkSelf(l);
         var ret = self.GetEnumerator();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }