mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
524 B
21 lines
524 B
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. |
|
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. |
|
|
|
namespace LightJson.Serialization |
|
{ |
|
/// <summary> |
|
/// Represents a position within a plain text resource. |
|
/// </summary> |
|
internal struct TextPosition |
|
{ |
|
/// <summary> |
|
/// The column position, 0-based. |
|
/// </summary> |
|
public long Column; |
|
|
|
/// <summary> |
|
/// The line position, 0-based. |
|
/// </summary> |
|
public long Line; |
|
} |
|
}
|
|
|