From 9eb30ca5c31399149d94f9d5b9ad5037078536e7 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Thu, 27 Oct 2022 18:17:14 +0200 Subject: [PATCH] feat(dotnet): add "magic methods" notes --- docs/dotnet/C#/C#.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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(/* ... */); +```