Beispiel #1
0
 /// <summary>
 /// Iterate through the operations of a graph.
 /// </summary>
 /// <param name="pos">The position pointer that can be used to iterate though the operations of this graph. Use IntPtr.Zero to get the first operation</param>
 /// <returns>The next operation from the position</returns>
 public Operation NextOperation(ref IntPtr pos)
 {
     return(new Operation(TfInvoke.tfeGraphNextOperation(_ptr, ref pos)));
 }
Beispiel #2
0
 /// <summary>
 /// Iterate through the operations of a graph.
 /// </summary>
 /// <param name="pos">The position pointer that can be used to iterate though the operations of this graph. Use IntPtr.Zero to get the first operation</param>
 /// <returns>The next operation from the position</returns>
 public Operation NextOperation(IntPtr pos = new IntPtr())
 {
     return(new Operation(TfInvoke.tfeGraphNextOperation(_ptr, pos)));
 }