[NF] Inireader vereinfachungen

This commit is contained in:
BlubbFish 2017-09-24 20:33:46 +00:00
parent 4a91406d4f
commit ad2d41dde0
3 changed files with 8 additions and 5 deletions

View File

@ -74,14 +74,17 @@ namespace BlubbFish.Utils
public List<String> GetSections()
{
return this.cont.Keys.ToList<String>();
return this.cont.Keys.ToList();
}
public Dictionary<String, String> GetSection(String section) {
if(this.cont.Keys.Contains(section)) {
return this.cont[section];
}
return new Dictionary<string, string>();
if(this.cont.Keys.Contains("["+section+"]")) {
return this.cont["[" + section + "]"];
}
return new Dictionary<String, String>();
}
public String GetValue(String section, String key)

View File

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Utils")]
[assembly: AssemblyCopyright("Copyright © 2014 - 24.04.2017")]
[assembly: AssemblyCopyright("Copyright © 2014 - 24.09.2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.5.0")]
[assembly: AssemblyFileVersion("1.0.5.0")]
[assembly: AssemblyVersion("1.0.5.1")]
[assembly: AssemblyFileVersion("1.0.5.1")]

Binary file not shown.