Skip to content

Commit de9ea74

Browse files
Korrektur Signatur Delegate (#118)
* Anpassung Konstruktor Beispiel -Beschränkungen- in Vorlesung 11_Generics * Anpassung DelegatesVsInterface-Beispiel bzgl. Delegatensignatur
1 parent a1d6aef commit de9ea74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

21_Delegaten.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ public class Program
378378
### Schnittstellen vs. Delegaten
379379

380380
```csharp DelegatesVsInterfaces
381-
void delegate XYZ(int p);
381+
delegate void XYZ(int p);
382382

383383
interface IXyz {
384384
void doit(int p);

0 commit comments

Comments
 (0)