BadScript 2
Loading...
Searching...
No Matches
IBadGenericObject.cs
Go to the documentation of this file.
2
6public interface IBadGenericObject
7{
11 bool IsResolved { get; }
12
16 bool IsGeneric { get; }
17
21 string GenericName { get; }
22
26 IReadOnlyCollection<string> GenericParameters { get; }
27
34}
The Base Class for all BadScript Objects.
Definition BadObject.cs:14
bool IsResolved
Indicates if the Object was already resolved to a concrete type.
IReadOnlyCollection< string > GenericParameters
The Generic Parameters of the Object.
BadObject CreateGeneric(BadObject[] args)
Resolves the Generic Object to a concrete type.
string GenericName
The Generic Name of the Object.
bool IsGeneric
Indicates if the Object is a Generic Object.