IniFile_dotNET 1.0.2

dotnet add package IniFile_dotNET --version 1.0.2
NuGet\Install-Package IniFile_dotNET -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IniFile_dotNET" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IniFile_dotNET --version 1.0.2
#r "nuget: IniFile_dotNET, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
1.0.2 1,060 8/15/2018
1.0.1 770 8/14/2018
1.0.0 838 8/14/2018

First release.