Skip to content

Commit

Permalink
Added constructor to IniFile taking filename as argument
Browse files Browse the repository at this point in the history
  • Loading branch information
RiJo committed Dec 19, 2014
1 parent 7da58b4 commit cecb455
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MediaOrganizer/IniFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ public IniFile()
{
}

public IniFile(string filename)
: base()
{
TryLoad(filename);
}

public bool TryLoad(string filename)
{
try
Expand Down

0 comments on commit cecb455

Please sign in to comment.