Subject | English | Spanish |
comp., MS | closed generic type | tipo genérico cerrado (A constructed generic type that has no unspecified generic type parameters, either of its own or of any enclosing types or methods. Closed generic types can be instantiated) |
comp., MS | constructed generic type | tipo genérico construido (A generic type whose generic type parameters have been specified. A constructed type or method can be an open generic type if some of its type arguments are type parameters of enclosing types or methods, or a closed generic type if all of its type arguments are real types) |
comp., MS | generic type | tipo genérico (A class, interface, or structure whose definition has placeholders, called generic type parameters, for one or more types that are used in its member definitions. A user specifies real types (generic type arguments) for the type parameters when creating an instance of a generic type) |
comp., MS | generic type argument | argumento de tipo genérico (The type that the user specifies when creating instances of a generic type or when calling a generic method) |
comp., MS | generic type definition | definición de tipo genérico (The definition of a generic type, in which type parameters act as placeholders for types that the user supplies when creating instances to use. These instances are not instances of the generic type definition, but of the constructed type formed by specifying type arguments) |
comp., MS | generic type parameter | parámetro de tipo genérico (In a generic type definition, a placeholder for a type that the user specifies (generic type argument) when creating instances of a generic type or when calling a generic method) |
comp., MS | generic type parameter constraint | restricción de parámetro de tipo genérico (A way of limiting the types that can be specified for a generic type parameter. For example, types substituted for the type parameter can be constrained to inherit from a particular type, to implement a specific interface, to provide a parameterless constructor, and so on) |
comp., MS | generic type parameter list | lista de parámetros de tipo genérico (The list of generic type parameters of a generic type or method, specified as part of the definition of the generic type or generic method) |
comp., MS | open generic type | tipo genérico abierto (A constructed generic type in which one or more of the generic type arguments substituted for its generic type parameters is a type parameter of an enclosing generic type or method. Open generic types cannot be instantiated) |