Updated grammar

- An ambiguous sentence, needed full stop (.)
- "i.e." instead of "ie."
This commit is contained in:
Ajit Panigrahi 2019-12-11 12:29:57 +05:30 committed by GitHub
parent 2e04696cf7
commit 2432006a8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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