Super Simple param.sfo parser in C# .NET Framework.
Go to file
Bluzume b108f0698c
Update README.md
2020-08-25 05:57:22 +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:22 +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"];