mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
Add custom ToString method for NPTicket section header
This commit is contained in:
parent
ed5bb5d769
commit
9e84e46844
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ public struct SectionHeader
|
|||
public SectionType Type;
|
||||
public ushort Length;
|
||||
public int Position;
|
||||
|
||||
public override string ToString() =>
|
||||
$"SectionHeader(Type='{this.Type}', Length='{this.Length}', Position='{this.Position}')";
|
||||
}
|
||||
|
||||
public class TicketReader : BinaryReader
|
||||
|
|
Loading…
Add table
Reference in a new issue