NdsForge.NET
1.0.1
Read, validate, edit, compare, and build Nintendo DS and DSi images from .NET
Loading...
Searching...
No Matches
NdsSemanticDifference.cs
1
namespace
NdsForge
;
2
4
public
sealed
class
NdsSemanticDifference
5
{
11
internal
NdsSemanticDifference(
string
path,
NdsDifferenceKind
kind,
string
? before,
string
? after)
12
{
13
Path
= path;
14
Kind
= kind;
15
Before
= before;
16
After
= after;
17
}
18
20
public
string
Path
{
get
; }
22
public
NdsDifferenceKind
Kind
{
get
; }
24
public
string
?
Before
{
get
; }
26
public
string
?
After
{
get
; }
27
}
NdsForge.NdsSemanticDifference.Kind
NdsDifferenceKind Kind
Separates content edits from layout-only moves and numeric identity changes.
Definition
NdsSemanticDifference.cs:22
NdsForge.NdsSemanticDifference.Path
string Path
Identifies the exact stable manifest value or logical component that changed.
Definition
NdsSemanticDifference.cs:20
NdsForge.NdsSemanticDifference.Before
string? Before
Contains the invariant left value, or remains absent when the component was added.
Definition
NdsSemanticDifference.cs:24
NdsForge.NdsSemanticDifference.After
string? After
Contains the invariant right value, or remains absent when the component was removed.
Definition
NdsSemanticDifference.cs:26
NdsForge
Definition
NdsBanner.cs:5
NdsForge.NdsDifferenceKind
NdsDifferenceKind
Classifies how one semantic or physical image value changed between manifest snapshots.
Definition
NdsDifferenceKind.cs:5
src
NdsForge
Diffing
NdsSemanticDifference.cs
Generated by
1.17.0