Interface IDotNetGeneric
Definition that determines if the .net model implements generics.
Namespace: CodeFactory.DotNet
Assembly: CodeFactory.DotNet.dll
Syntax
public interface IDotNetGeneric
Properties
| Improve this Doc View SourceGenericParameters
List of the generic parameters assigned.
Declaration
IReadOnlyList<IDotNetGenericParameter> GenericParameters { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<IDotNetGenericParameter> |
GenericTypes
Enumeration of the strong types that are implemented for each generic parameter. This will be an empty list when there is no generic types implemented.
Declaration
IReadOnlyList<IDotNetType> GenericTypes { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<IDotNetType> |
HasStrongTypesInGenerics
Flag that determines if the generics implementation has strong types passed in to the generics implementation.
Declaration
bool HasStrongTypesInGenerics { get; }
Property Value
Type | Description |
---|---|
bool |
IsGeneric
Flag the determines if this item supports generics
Declaration
bool IsGeneric { get; }
Property Value
Type | Description |
---|---|
bool |