Update about Manager.

This commit is contained in:
Bruce
2026-01-27 22:47:49 +08:00
parent 5a404a55e3
commit 0c87a2cdcd
52 changed files with 9170 additions and 201 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PriFormat
{
public struct ByteSpan
{
public long Offset { get; private set; }
public uint Length { get; private set; }
public ByteSpan (long offset, uint length)
{
Offset = offset;
Length = length;
}
public override string ToString ()
{
return "ByteSpan | Offset = " + Offset + "\t, Length = " + Length;
}
}
}