NdsForge.NET 1.0.1
Read, validate, edit, compare, and build Nintendo DS and DSi images from .NET
Loading...
Searching...
No Matches
IImageDataSource.cs
1namespace NdsForge;
2
7internal interface IImageDataSource : IDisposable, IAsyncDisposable
8{
10 long Length { get; }
11
16 int Read(long offset, Span<byte> destination);
17
23 ValueTask<int> ReadAsync(long offset, Memory<byte> destination, CancellationToken cancellationToken);
24}