mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
feat(dotnet): add "magic methods" notes
This commit is contained in:
parent
52419b71e0
commit
9eb30ca5c3
1 changed files with 17 additions and 0 deletions
|
@ -2923,3 +2923,20 @@ In this case, the method must also be declared as `static`.
|
||||||
[DllImport("avifil32.dll")]
|
[DllImport("avifil32.dll")]
|
||||||
private static extern void AVIFileInit();
|
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(/* ... */);
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue