Skip to content

Instantly share code, notes, and snippets.

@jeffersonvventura
Forked from Sn0wCrack/INIFile.cs
Created March 4, 2022 15:29
Show Gist options
  • Save jeffersonvventura/247846e49273cc53bc5bcd5ceb2945f8 to your computer and use it in GitHub Desktop.
Save jeffersonvventura/247846e49273cc53bc5bcd5ceb2945f8 to your computer and use it in GitHub Desktop.
A simple way to read INI Files with C#
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace <INSERT_NAMESPACE_HERE>
{
public class INIFile
{
public string path { get; private set; }
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key,string val,string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key,string def, StringBuilder retVal, int size,string filePath);
public INIFile(string INIPath)
{
path = INIPath;
}
public void IniWriteValue(string Section, string Key, string Value)
{
WritePrivateProfileString(Section, Key, Value, this.path);
}
public string IniReadValue(string Section,string Key)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path);
return temp.ToString();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment