| 123456789101112131415161718192021222324 |
- using System;
- namespace ETModel
- {
- public struct AsyncUnit: IEquatable<AsyncUnit>
- {
- public static readonly AsyncUnit Default = new AsyncUnit();
- public override int GetHashCode()
- {
- return 0;
- }
- public bool Equals(AsyncUnit other)
- {
- return true;
- }
- public override string ToString()
- {
- return "()";
- }
- }
- }
|