Added a SkipString() method to the parser helper; began work in implementing a configuration file parser
git-svn-id: file:///srv/devel/repo-conversion/nusu@296 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
2210973528
commit
c90033caad
5 changed files with 187 additions and 0 deletions
15
Source/Configuration/OptionInfo.cs
Normal file
15
Source/Configuration/OptionInfo.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
|
||||
namespace Nuclex.Support.Configuration {
|
||||
|
||||
/// <summary>Informations about an option stored in a settings container</summary>
|
||||
public struct OptionInfo {
|
||||
|
||||
/// <summary>Name of the option</summary>
|
||||
public string Name;
|
||||
/// <summary>Data type of the option</summary>
|
||||
public Type OptionType;
|
||||
|
||||
}
|
||||
|
||||
} // namespace Nuclex.Support.Configuration
|
||||
Loading…
Add table
Add a link
Reference in a new issue