mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-06-19 05:40:12 +10:00
Update about Manager.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user