Beispiel #1
0
 public bool MoveNext()
 {
     while (RureFfi.rure_iter_capture_names_next(Raw, out IntPtr name))
     {
         Current = Marshal.PtrToStringAnsi(name);
         if (!string.IsNullOrEmpty(Current))
         {
             return(true);
         }
     }
     return(false);
 }