Update README.md

This commit is contained in:
Bluzume 2020-08-25 05:57:22 +12:00 committed by GitHub
parent 6e10113138
commit b108f0698c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -2,5 +2,7 @@
Super Simple param.sfo parser in C# .NET Framework.
Usage:
Dictionary<string,object> SfoKeys = Sfo.ReadSfo(Stream or Byte\[]);
string TitleId = (string)SfoKeys\["TITLE_ID"];
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"];