NdsForge.NET 1.0.1
Read, validate, edit, compare, and build Nintendo DS and DSi images from .NET
Loading...
Searching...
No Matches
NdsBuildFile.cs
1namespace NdsForge;
2
12public sealed class NdsBuildFile
13{
19 internal NdsBuildFile(string path, byte[] contents)
20 {
21 Path = path;
22 Contents = contents;
23 }
24
32 public string Path { get; internal set; }
33
41 public ReadOnlyMemory<byte> Contents { get; internal set; }
42}
ReadOnlyMemory< byte > Contents
Exposes the exact bytes that will be assigned a FAT entry when the image is laid out.
string Path
Identifies the file in NitroFS using a leading slash and one-byte path segments; Latin-1 code points ...