A generic class with three generic type parameters.
public class ExampleTriGenericClass<TOne, TTwo, TThree>
where TTwo : struct, IEnumerable<string>
where TThree : class, TOne, IEnumerable<TTwo?>
| parameter | description |
|---|---|
| TOne | The first generic type. |
| TTwo | The second generic type. |
| TThree | The third generic type. |
| name | description |
|---|---|
| ExampleTriGenericClass() | The default constructor. |