Mosa.Compiler.Linker.LinkerSection.LinkerSection C# (CSharp) Méthode

LinkerSection() public méthode

public LinkerSection ( SectionKind sectionKind, uint alignment ) : System.Collections.Generic
sectionKind SectionKind
alignment uint
Résultat System.Collections.Generic
        public LinkerSection(SectionKind sectionKind, uint alignment)
        {
            SectionKind = sectionKind;
            IsResolved = false;
            symbolLookup = new Dictionary<string, LinkerSymbol>();
            Symbols = new List<LinkerSymbol>();
            SectionAlignment = alignment;
            Size = 0;
        }