IniFile_dotNET 1.0.2
dotnet add package IniFile_dotNET --version 1.0.2
NuGet\Install-Package IniFile_dotNET -Version 1.0.2
<PackageReference Include="IniFile_dotNET" Version="1.0.2" />
paket add IniFile_dotNET --version 1.0.2
#r "nuget: IniFile_dotNET, 1.0.2"
// Install IniFile_dotNET as a Cake Addin #addin nuget:?package=IniFile_dotNET&version=1.0.2 // Install IniFile_dotNET as a Cake Tool #tool nuget:?package=IniFile_dotNET&version=1.0.2
IniFile .NET object class for handling creation, reading, and writing of INI Files.
Features: Full read/write/creation support. Easy to use: most operations can be done with a single line of code. Supports comments at the section and key level. Supports implied and manual ordering of sections and keys. Full intellisense comments included.
Example: // Creates or loads an INI file in the same directory as your executable var MyIni = new ManagementINI("Settings.ini");
// You can write some values like so: MyIni.put("screen_width", "800"); MyIni.put("screen_height", "600");
// Optionally, you can set [Section]'s: MyIni.put("screen_height", "600", "CONFIG");
// You can also check for the existence of a key like so: if (!MyIni.containsValue("DefaultLanguage", "CONFIG")) MyIni.put("DefaultLanguage", Setting.getDefaultLanguage(), "CONFIG");
// To read the values out of the INI file: var width = MyIni.get("CONFIG", "screen_width");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
First release.