// Decompiled with JetBrains decompiler // Type: System.Windows.Forms.BytePositionInfo // Assembly: FiestaShark, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null // MVID: 12469781-3753-4869-9C1A-117F1862B52C // Assembly location: E:\Fiesta\Emus\DragonFiesta\Tools\FiestaShark-Farbod\FiestaShark.exe namespace System.Windows.Forms { internal struct BytePositionInfo { private int _characterPosition; private long _index; public BytePositionInfo(long index, int characterPosition) { this._index = index; this._characterPosition = characterPosition; } public int CharacterPosition { get { return this._characterPosition; } } public long Index { get { return this._index; } } } }