Interface IAssembly
Defines a common interface for assemblies: collections of types.
Namespace: Flame
Assembly: Flame.dll
Syntax
public interface IAssembly : IMember
Properties
| Improve this Doc View SourceTypes
Gets a list of all top-level types defined in this assembly.
Declaration
IReadOnlyList<IType> Types { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<IType> | A list of types that are defined in this assembly. |