Super Simple param.sfo parser in C# .NET Framework.
Go to file
Bluzume 38aa98cece
Update README.md
2020-08-25 05:57:43 +12:00
DataUtils.cs Add files via upload 2020-08-25 05:52:44 +12:00
LICENSE Initial commit 2020-08-25 05:51:40 +12:00
ParamSfo.cs Add files via upload 2020-08-25 05:52:13 +12:00
README.md Update README.md 2020-08-25 05:57:43 +12:00

README.md

Sfo.NET

Super Simple param.sfo parser in C# .NET Framework.

Usage:
Dictionary<string,object> SfoKeys = Sfo.ReadSfo(Stream or Byte[]);
UInt32 AttributeMinor = (UInt32)SfoKeys["ATTRIBUTE_MINOR"];
Byte[] AccountId = (Byte[])SfoKeys["ACCOUNT_ID"];
String TitleId = (string)SfoKeys["TITLE_ID"];