예제 #1
0
 private void InitFiles()
 {
     _SourceDoc        = new XmlDiffDocument();
     _SourceDoc.Option = this._XmlDiffOption;
     _TargetDoc        = new XmlDiffDocument();
     _TargetDoc.Option = this.Option;
     _Output           = new StringBuilder(string.Empty);
 }
예제 #2
0
 private void InitFiles()
 {
     _sourceDoc = new XmlDiffDocument {
         Option = Option
     };
     _targetDoc = new XmlDiffDocument {
         Option = Option
     };
     _output = new StringBuilder(string.Empty);
 }
예제 #3
0
파일: XmlDiff.cs 프로젝트: noahfalk/corefx
 private void InitFiles()
 {
     this._SourceDoc = new XmlDiffDocument();
     this._SourceDoc.Option = this._XmlDiffOption;
     this._TargetDoc = new XmlDiffDocument();
     this._TargetDoc.Option = this.Option;
     _Output = new StringBuilder(String.Empty);
 }