Subbu
Subbu

Reputation: 839

WriteProfileString and ReadProfileString functions

Is there a WriteProfileString support directly in C#? I do not want to use the unmanaged function from kernel32.dll.

Upvotes: 0

Views: 1320

Answers (1)

No, as far as I know, .NET does not support INI files anymore.

In the .NET world, the INI file format has been widely replaced by XML, which is the new de-facto standard for configuration files (e.g. app.config files for which the .NET Framework provides support through the static System.Configuration.ConfigurationManager class).

Upvotes: 1

Related Questions