Pchp.CodeAnalysis.Symbols.AssemblySymbol.SetCorLibrary C# (CSharp) Method

SetCorLibrary() private method

A helper method for ReferenceManager to set the system assembly, which provides primitive types like Object, String, etc., e.g. mscorlib.dll.
private SetCorLibrary ( AssemblySymbol corLibrary ) : void
corLibrary AssemblySymbol
return void
        internal void SetCorLibrary(AssemblySymbol corLibrary)
        {
            Debug.Assert((object)_corLibrary == null);
            _corLibrary = corLibrary;
        }