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 aboolvalue to the set.Add(int)- Adds the string representation of a signedintvalue to the set.Add(float)- Adds the string representation of afloatvalue to the set.Add(double)- Adds the string representation of adoublevalue to the set.TryAdd(bool)- Attempts to add the string representation of aboolvalue to the set. Return whether an item was added.TryAdd(int)- Attempts to add the string representation of a signedintvalue to the set. Return whether an item was added.TryAdd(float)- Attempts to add the string representation of afloatvalue to the set. Return whether an item was added.TryAdd(double)- Attempts to add the string representation of adoublevalue to the set. Return whether an item was added.Remove(int) : bool- Removes the string representation of aboolvalue from the set. Returns whether an item was removed.Remove(int) : bool- Removes the string representation of a signedintvalue from the set. Returns whether an item was removed.Remove(float) : bool- Removes the string representation of afloatvalue from the set. Returns whether an item was removed.Remove(double) : bool- Removes the string representation of a signedintvalue from the set. Returns whether an item was removed.
NOTE: The string representations will be formatted using CultureInfo.CurrentCulture.