diff --git a/docs/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md index c44b017..5481d2d 100644 --- a/docs/dotnet/C#/C#.md +++ b/docs/dotnet/C#/C#.md @@ -2923,3 +2923,20 @@ In this case, the method must also be declared as `static`. [DllImport("avifil32.dll")] private static extern void AVIFileInit(); ``` + +## Magic Methods + +Methods needed to implement a behaviour which do not need an interface to work. The methods **must** be named _appropriately_ and have the correct _return type_. + +### Enumerable + +```cs +public bool MoveNext(/* ... */); +public T Current { get; } +``` + +### Awaitable + +```cs +public TaskAwaiter GetAwaiter(/* ... */); +```