ETVoid.cs 573 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Diagnostics;
  3. using System.Runtime.CompilerServices;
  4. namespace ET
  5. {
  6. [AsyncMethodBuilder(typeof (AsyncETVoidMethodBuilder))]
  7. internal struct ETVoid: ICriticalNotifyCompletion
  8. {
  9. [DebuggerHidden]
  10. public void Coroutine()
  11. {
  12. }
  13. [DebuggerHidden]
  14. public bool IsCompleted => true;
  15. [DebuggerHidden]
  16. public void OnCompleted(Action continuation)
  17. {
  18. }
  19. [DebuggerHidden]
  20. public void UnsafeOnCompleted(Action continuation)
  21. {
  22. }
  23. }
  24. }