Add majority of data extensions tests, fix minor issues

This commit is contained in:
Matt Nadareski
2026-03-21 20:09:10 -04:00
parent 8bec2087eb
commit 5544ab0b8a
16 changed files with 910 additions and 11 deletions

View File

@@ -8,7 +8,7 @@ namespace SabreTools.Data.Extensions
/// <summary>
/// Convert a UInt32 to a formatted XBE title ID
/// </summary>
public static string? ToFormattedXBETitleID(this uint value)
public static string ToFormattedXBETitleID(this uint value)
{
// Convert to a byte array
byte[] data = BitConverter.GetBytes(value);