Is there an easy way in C# to read a properties file that has each property on a separate line followed by an equals sign and the value, such as the following:
C# generally uses xml-based config files rather than the *.ini-style file like you said, so there's nothing built-in to handle this. However, google returns a number of promising results.