Mosa.Compiler.MosaTypeSystem.TypeSystem.Load C# (CSharp) Method

Load() public static method

public static Load ( IMetadata metadata ) : TypeSystem
metadata IMetadata
return TypeSystem
        public static TypeSystem Load(IMetadata metadata)
        {
            TypeSystem result = new TypeSystem(metadata);
            result.Load();
            return result;
        }

Same methods

TypeSystem::Load ( ) : void

Usage Example

Example #1
0
        public static TypeSystem Load(IMetadata metadata)
        {
            TypeSystem result = new TypeSystem(metadata);

            result.Load();
            return(result);
        }
All Usage Examples Of Mosa.Compiler.MosaTypeSystem.TypeSystem::Load