[]
Returns the number of themes in this theme collection.
The returned value includes both the built-in themes and any custom themes added to the collection.
public int Count { get; }
Public ReadOnly Property Count As Integer
Themes themes = new Themes();
themes.Add("Custom Theme");
int count = themes.Count;