Execute() приватный Метод

Executes the fiber until it ends or yields.
private Execute ( ) : FiberInstruction
Результат FiberInstruction
 /// <summary>
 /// Executes the fiber until it ends or yields.
 /// </summary>
 /// <remarks>
 /// Custom schedulers will need to invoke this method in order
 /// to actually perform the work of the fiber and cause the correct
 /// state transitions to occur.
 /// </remarks>
 /// <returns>
 /// A fiber instruction to be processed by the scheduler.
 /// </returns>
 /// <param name='fiber'>
 /// The fiber to execute.
 /// </param>
 protected FiberInstruction ExecuteFiber(Fiber fiber)
 {
     return fiber.Execute();
 }
 /// <summary>
 /// Executes the fiber until it ends or yields.
 /// </summary>
 /// <remarks>
 /// Custom schedulers will need to invoke this method in order
 /// to actually perform the work of the fiber and cause the correct
 /// state transitions to occur.
 /// </remarks>
 /// <returns>
 /// A fiber instruction to be processed by the scheduler.
 /// </returns>
 /// <param name='fiber'>
 /// The fiber to execute.
 /// </param>
 protected FiberInstruction ExecuteFiber(Fiber fiber)
 {
     return(fiber.Execute());
 }