Add the missing letter (#3334)

"The type parameters can the be used" -> "The type parameters can then be used"
This commit is contained in:
Andrew Dashkov 2021-03-02 01:05:41 +02:00 committed by GitHub
parent f0590512a5
commit 835828da4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -622,7 +622,7 @@ Each member of a class has an associated accessibility, which controls the regio
### Type parameters
A class definition may specify a set of type parameters by following the class name with angle brackets enclosing a list of type parameter names. The type parameters can the be used in the body of the class declarations to define the members of the class. In the following example, the type parameters of `Pair` are `TFirst` and `TSecond`:
A class definition may specify a set of type parameters by following the class name with angle brackets enclosing a list of type parameter names. The type parameters can then be used in the body of the class declarations to define the members of the class. In the following example, the type parameters of `Pair` are `TFirst` and `TSecond`:
```csharp
public class Pair<TFirst,TSecond>