forked from mirrors/NBTExplorer
29 lines
622 B
C#
29 lines
622 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Be.Windows.Forms
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents a position in the HexBox control
|
|||
|
/// </summary>
|
|||
|
struct BytePositionInfo
|
|||
|
{
|
|||
|
public BytePositionInfo(long index, int characterPosition)
|
|||
|
{
|
|||
|
_index = index;
|
|||
|
_characterPosition = characterPosition;
|
|||
|
}
|
|||
|
|
|||
|
public int CharacterPosition
|
|||
|
{
|
|||
|
get { return _characterPosition; }
|
|||
|
} int _characterPosition;
|
|||
|
|
|||
|
public long Index
|
|||
|
{
|
|||
|
get { return _index; }
|
|||
|
} long _index;
|
|||
|
}
|
|||
|
}
|