Is there class to read .ini files in .net?


Thanks

Re: Is there class to read .ini files? by Gabriel

Gabriel
Thu Feb 02 17:43:57 CST 2006

This one does "the right thing" and calls the Windows API INI file functions
to handle INI files: http://www.codeproject.com/csharp/cs_ini.asp

I ended up writing my own routines because the Windows API opens and closes
the INI file for each setting you access, and with a lot of settings things
get really slow...



Re: Is there class to read .ini files? by nonamehkg

nonamehkg
Thu Feb 02 19:42:30 CST 2006

Thanks