Identify generic type parameters
- Last Updated: November 1, 2022
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
To identify what type parameter or parameters are required to construct a given .NET generic type, you can begin by using the Class Browser in Progress Developer Studio for OpenEdge look up the open type name, then review the complete description for the generic type in the .NET documentation.
In .NET class library documentation, you can identify a generic type by how
it is listed under its namespace. Depending on the .NET version, the listing for the object
type might include the word "Generic". For example, the .NET listing for the Stack generic type appears under the System.Collections.Generic namespace as follows:
|
For more inforamation, see the .NET class library reference documentation.