Microsoft.Zing.Splicer.Splicer C# (CSharp) Method

Splicer() public method

public Splicer ( CompilerParameters options, TrivialHashtable referencedLabels, Hashtable exceptionNames ) : System
options CompilerParameters
referencedLabels TrivialHashtable
exceptionNames Hashtable
return System
        public Splicer(CompilerParameters options, TrivialHashtable referencedLabels, Hashtable exceptionNames)
        {
            this.options = options;
            this.referencedLabels = referencedLabels;
            this.exceptionNames = exceptionNames;
            choosableTypes = new Hashtable();
            sourceDocuments = new Hashtable();
            ZingCompilerOptions zOptions = (ZingCompilerOptions)options;
            if (zOptions.DumpLabels)
                labelString = new System.Text.StringBuilder();
        }