[NF] Gibt nun bei ini-Dateien ganze Bereiche zurück
This commit is contained in:
parent
61a7f1ff7b
commit
f9216f7bc9
@ -77,6 +77,13 @@ namespace BlubbFish.Utils
|
||||
return this.cont.Keys.ToList<String>();
|
||||
}
|
||||
|
||||
public Dictionary<String, String> GetSection(String section) {
|
||||
if(this.cont.Keys.Contains(section)) {
|
||||
return this.cont[section];
|
||||
}
|
||||
return new Dictionary<string, string>();
|
||||
}
|
||||
|
||||
public String GetValue(String section, String key)
|
||||
{
|
||||
if (!section.StartsWith("[")) {
|
||||
|
@ -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.4.1")]
|
||||
[assembly: AssemblyFileVersion("1.0.4.1")]
|
||||
[assembly: AssemblyVersion("1.0.5.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.5.0")]
|
||||
|
Loading…
Reference in New Issue
Block a user