LineInfo.cs 747 B

123456789101112131415161718192021222324
  1. //------------------------------------------------------------------------------
  2. // <copyright file="LineInfo.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">Microsoft</owner>
  6. //------------------------------------------------------------------------------
  7. namespace System.Xml {
  8. internal struct LineInfo {
  9. internal int lineNo;
  10. internal int linePos;
  11. public LineInfo( int lineNo, int linePos ) {
  12. this.lineNo = lineNo;
  13. this.linePos = linePos;
  14. }
  15. public void Set( int lineNo, int linePos ) {
  16. this.lineNo = lineNo;
  17. this.linePos = linePos;
  18. }
  19. }
  20. }