(NOTE - I just realized I was in the wrong forum when I posted this. If a mod could move this to the I/O section that would probably be more appropriate- thanks).
Im writing an app which currently uses the registry for storing program data.
Unfortunately the amount of data which needs to be stored can easily exceed the limits for keys, values, etc. so I need to go with a file based system for storage.
In keeping with the .NET "mindset" I originally planned to use XML config files, etc., but after looking at some of the overhead and hoops that need to be jumped through just to save/retrieve simple settings, I now think that INI files would offer a better solution (the app is time sensitive so I want data retrieval to be as quick as possible).
I plan on writing a 100% managed code class for INI file manipulation. Ive found only one on the web, but it was quite basic and not very well written. All the others use API calls which Id like to avoid.
Does anyone have a robust 100% managed code INI file class? If so, could you post a link?
If not, is there anyone interested in a managed code INI file class? If so, Ill post it here when complete.
BTW, this would be written in VB.NET.
Cheers,
Dean
Im writing an app which currently uses the registry for storing program data.
Unfortunately the amount of data which needs to be stored can easily exceed the limits for keys, values, etc. so I need to go with a file based system for storage.
In keeping with the .NET "mindset" I originally planned to use XML config files, etc., but after looking at some of the overhead and hoops that need to be jumped through just to save/retrieve simple settings, I now think that INI files would offer a better solution (the app is time sensitive so I want data retrieval to be as quick as possible).
I plan on writing a 100% managed code class for INI file manipulation. Ive found only one on the web, but it was quite basic and not very well written. All the others use API calls which Id like to avoid.
Does anyone have a robust 100% managed code INI file class? If so, could you post a link?
If not, is there anyone interested in a managed code INI file class? If so, Ill post it here when complete.
BTW, this would be written in VB.NET.
Cheers,
Dean
Last edited by a moderator: