From b108f0698c2624da4140112c63ebf009e78b0e3c Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Tue, 25 Aug 2020 05:57:22 +1200 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8fbbd25..f5079bd 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,7 @@ Super Simple param.sfo parser in C# .NET Framework. Usage: -Dictionary SfoKeys = Sfo.ReadSfo(Stream or Byte\[]); -string TitleId = (string)SfoKeys\["TITLE_ID"]; + Dictionary SfoKeys = Sfo.ReadSfo(Stream or Byte\[]); + UInt32 AttributeMinor = (UInt32)SfoKeys\["ATTRIBUTE_MINOR"]; + Byte\[] AccountId = (Byte\[])SfoKeys\["ACCOUNT_ID"]; + String TitleId = (string)SfoKeys\["TITLE_ID"];