DEV Community

Discussion on: Open source shameless promotion thread

Collapse
 
erezwanderman profile image
erezwanderman

JavaPropertiesTokenizer - A .NET library for tokenizing Java properties files
github.com/erezwanderman/JavaPrope...
Description: Java .properties is a common file format for storing configuration for Java applications. Example:

# comment
key=value

There are already other libraries that can parse such file into a Dictionary so you can use the file in a .NET program. But this library tokenizes the file to preserve comments, whitespace, separators and other elements so the file can be edited and saved back without destroying its structure.

Collapse
 
fultonbrowne profile image
Fulton Browne

I will be using this, thanks

Collapse
 
erezwanderman profile image
erezwanderman

Great! I'll be happy to receive issues and PRs