diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-01-28 19:02:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 19:02:50 +0100 |
commit | 6688c270251adf3efa577e3276de563f3330b08f (patch) | |
tree | d669585f799033baa68c0f843e9a0873bbfcd6d9 | |
parent | 5f8e47a46003e4b5bc689dce4d98fd250e843ba0 (diff) | |
parent | 2432006a8d11a7e0bdcc976f1ec0bd6262a67245 (diff) |
Merge pull request #3794 from AjitZero/patch-1
[c#/en] Updated grammar
-rw-r--r-- | csharp.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 0643f033..b965c2d4 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -653,10 +653,10 @@ on a new line! ""Wow!"", the masses cried"; return ++count; } - // A delegate is a reference to a method + // A delegate is a reference to a method. // To reference the Increment method, - // first declare a delegate with the same signature - // ie. takes no arguments and returns an int + // first declare a delegate with the same signature, + // i.e. takes no arguments and returns an int public delegate int IncrementDelegate(); // An event can also be used to trigger delegates |