Microsoft.JScript.Context.CombineWith C# (CSharp) Méthode

CombineWith() private méthode

private CombineWith ( Context other ) : Context
other Context
Résultat Context
    internal Context CombineWith(Context other){
      return new Context(this.document, this.source_string, this.lineNumber, this.startLinePos, this.startPos, 
                         other.endLineNumber, other.endLinePos, other.endPos, this.token);
    }