[]
Represents a collection of alternative style names.
public class AliasCollection : IReadOnlyCollection<string>, IEnumerable<string>, IEnumerable
Gets the number of aliases in the collection.
public int Count { get; }
Adds a new alias to the collection.
public void Add(string alias)
alias
stringThe style alias.
Removes all aliases from the collection.
public void Clear()
Gets the enumerator that interates through the collection.
public IEnumerator<string> GetEnumerator()
The enumerator that interates through the collection.
Removes an alias from the collection.
public void Remove(string alias)
alias
stringThe alias to remove.