Skip to content
/ Sfo.NET Public

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

License

Notifications You must be signed in to change notification settings

LiEnby/Sfo.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Sfo.NET

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

Usage:

  Dictionary<string,object> SfoKeys = Sfo.ReadSfo(File.OpenRead(@"param.sfo"));     

or

  Dictionary<string,object> SfoKeys = Sfo.ReadSfo(File.ReadAlLBytes(@"param.sfo"));  

Reading values:

  UInt32 AttributeMinor = (UInt32)SfoKeys["ATTRIBUTE_MINOR"];           
  Byte[] AccountId = (Byte[])SfoKeys["ACCOUNT_ID"];           
  String TitleId = (String)SfoKeys["TITLE_ID"];              

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages