OptionsCollection Class

Default implementation of IOptionsCollection

Definition

Namespace: SMath.Manager
Assembly: SMath.Manager (in SMath.Manager.dll) Version: 1.73.9126.0
C#
public class OptionsCollection : IEnumerable<KeyValuePair<string, string>>, 
	IEnumerable
Inheritance
Object    OptionsCollection
Derived
Implements
IEnumerable<KeyValuePair<String, String>>, IEnumerable

Constructors

OptionsCollection Default constructor of the OptionsCollection object.

Properties

Item Gets or sets a string representation of the option value.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetBoolean Returns value of the option in boolean format.
GetCollection Returns a dictionary of the options with values where name of the option start with a given name.
GetEnumerator Returns enumerator of the available options.
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetInt Returns value of the option in integer format.
GetSingle Returns value of the option in the floating number format.
GetString Returns value of the option as a string.
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)
TryParseBoolean Tries to parse a setting of type Boolean from a string.
TryParseInt Tries to parse a setting of type Int32 from a string.

Fields

data Dictionary of the options and its values.

Explicit Interface Implementations

IEnumerable.GetEnumeratorReturns an enumerator that iterates through a collection.

See Also