You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Fix delegate type name from Del to Callback (dotnet#49456)
The example declares a delegate named 'Callback' but later
incorrectly refers to it as 'Del'. This commit fixes the
inconsistency to use 'Callback' throughout the document."
Along with the static `DelegateMethod` shown previously, we now have three methods that you can wrap in a `Del` instance.
42
+
Along with the static `DelegateMethod` shown previously, we now have three methods that you can wrap in a `Callback` instance.
43
43
44
44
A delegate can call more than one method when invoked, referred to as multicasting. To add an extra method to the delegate's list of methods—the invocation list—simply requires adding two delegates using the addition or addition assignment operators ('+' or '+='). For example:
0 commit comments