2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="LineInfo.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.Xml {
|
|
|
|
|
|
|
|
internal struct LineInfo {
|
|
|
|
internal int lineNo;
|
|
|
|
internal int linePos;
|
|
|
|
|
|
|
|
public LineInfo( int lineNo, int linePos ) {
|
|
|
|
this.lineNo = lineNo;
|
|
|
|
this.linePos = linePos;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Set( int lineNo, int linePos ) {
|
|
|
|
this.lineNo = lineNo;
|
|
|
|
this.linePos = linePos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|