| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Diagnostics;
- using System.Runtime.CompilerServices;
- namespace ETModel
- {
- [AsyncMethodBuilder(typeof(AsyncETVoidMethodBuilder))]
- public struct ETVoid
- {
- public void NoAwait()
- {
- }
- [DebuggerHidden]
- public Awaiter GetAwaiter()
- {
- return new Awaiter();
- }
- public struct Awaiter : ICriticalNotifyCompletion
- {
- [DebuggerHidden]
- public bool IsCompleted => true;
- [DebuggerHidden]
- public void GetResult()
- {
- }
- [DebuggerHidden]
- public void OnCompleted(Action continuation)
- {
- }
- [DebuggerHidden]
- public void UnsafeOnCompleted(Action continuation)
- {
- }
- }
- }
- }
|