Зміст курсу
Advanced C# with .NET
Advanced C# with .NET
Implementing Generic Classes
The basic syntax for implementing a Generic class is as follows:
Here T1, T2, ..
represent the type parameters.
We can create a new instance of a generic class using any of the following syntax:
index
ClassName<T1, T2, ..> varName = new ClassName<T1, T2, ..>(args, ..); ClassName<T1, T2, ..> varName = new ClassName<>(args, ..); ClassName<T1, T2, ..> varName = new ClassName(args, ..); var varName = new ClassName<T1, T2, ..>(args, ..);
We can use the type parameters anywhere inside the class body where a data type is applicable. For-example, we can use the type parameter(s) to:
- Create class attributes or properties
- Specify method argument types
- Specify method return types
Дякуємо за ваш відгук!