mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-15 13:55:14 +00:00
15 lines
398 B
C#
15 lines
398 B
C#
using SabreTools.Serialization;
|
|
using SabreTools.Serialization.Deserializers;
|
|
|
|
namespace Test
|
|
{
|
|
class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
string path = "R:\\BurnOutSharp Testing Files\\FileType\\AACS Media Key Block\\1 (HD-DVD)\\MKBROM.AACS";
|
|
var obj = AACS.DeserializeFile(path);
|
|
// DO NOTHING FOR NOW
|
|
}
|
|
}
|
|
} |