StringSet
Derives from RuntimeSet<T>
.
Description
Represents a set of string
values that can be shared and modified throughout the application.
Public Methods
Add(bool)
- Adds the string representation of abool
value to the set.Add(int)
- Adds the string representation of a signedint
value to the set.Add(float)
- Adds the string representation of afloat
value to the set.Add(double)
- Adds the string representation of adouble
value to the set.TryAdd(bool)
- Attempts to add the string representation of abool
value to the set. Return whether an item was added.TryAdd(int)
- Attempts to add the string representation of a signedint
value to the set. Return whether an item was added.TryAdd(float)
- Attempts to add the string representation of afloat
value to the set. Return whether an item was added.TryAdd(double)
- Attempts to add the string representation of adouble
value to the set. Return whether an item was added.Remove(int) : bool
- Removes the string representation of abool
value from the set. Returns whether an item was removed.Remove(int) : bool
- Removes the string representation of a signedint
value from the set. Returns whether an item was removed.Remove(float) : bool
- Removes the string representation of afloat
value from the set. Returns whether an item was removed.Remove(double) : bool
- Removes the string representation of a signedint
value from the set. Returns whether an item was removed.
NOTE: The string representations will be formatted using CultureInfo.CurrentCulture
.