Last active
September 18, 2024 07:49
-
-
Save Sn0wCrack/5891612 to your computer and use it in GitHub Desktop.
A simple way to read INI Files with C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Thanks....!!!