BoundType.BoundType C# (CSharp) 메소드

BoundType() 공개 메소드

public BoundType ( Symbol, owner, TextLocation, location, string name ) : Panther.CodeAnalysis.Symbols
owner Symbol,
location TextLocation,
name string
리턴 Panther.CodeAnalysis.Symbols
    public BoundType(Symbol owner, TextLocation location, string name) : base(owner, location, name)
    {
        this.Type = new ClassType(this);
    }
}
BoundType