I need a way to read all sections/keys of ini file in a StringBuilder variable:
[DllImport(\"kernel32.dll\")] private static extern int GetPrivateProfileStri
I believe there's also GetPrivateProfileSection() that could help, but I agree with Zenwalker, there are libraries that could help with this. INI files aren't that hard to read: sections, key/value and comments is pretty much it.
GetPrivateProfileSection()