Microsoft.JScript.Context.CombineWith C# (CSharp) Метод

CombineWith() приватный Метод

private CombineWith ( Context other ) : Context
other Context
Результат 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);
    }