https://github.com/marcopacini/ini-reader
C# Class similar to Java properties class for INI file.
https://github.com/marcopacini/ini-reader
Last synced: 3 months ago
JSON representation
C# Class similar to Java properties class for INI file.
- Host: GitHub
- URL: https://github.com/marcopacini/ini-reader
- Owner: marcopacini
- Created: 2016-10-19T09:51:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-19T12:46:49.000Z (over 8 years ago)
- Last Synced: 2025-01-28T03:30:35.649Z (4 months ago)
- Language: C#
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# INI Reader
C# Class similar to Java properties class for INI file.### INI File Example
# This is a comment
host=192.168.0.1
username=admin### C# Code Example
// Case 1
var host = INIReader.GetProperties("host");
// Case 2
var properties = INIReader("settings.ini");
var username = properties.getProperty("username");