Beispiel #1
0
        // Group: Functions
        // __________________________________________________________________________

        /* Function: Scope
         */
        public Scope(Symbols.SymbolString scopeString) : base()
        {
            this.scopeString = scopeString;
            this.Title       = scopeString.LastSegment;
        }
Beispiel #2
0
        // Group: Functions
        // __________________________________________________________________________

        /* Function: Scope
         */
        public Scope(Symbols.SymbolString scopeString, Hierarchy hierarchy) : base(hierarchy)
        {
            this.scopeString = scopeString;
            this.Title       = scopeString.LastSegment;
        }