// Token: 0x06001F24 RID: 7972 RVA: 0x000B2FD7 File Offset: 0x000B11D7
 protected override void RenderSelectedValue(TextWriter writer)
 {
     if (this.selectedCategory != null)
     {
         writer.Write(CategoryDropDownList.GetCategoryHtml(this.selectedCategory));
     }
 }
 // Token: 0x06001F26 RID: 7974 RVA: 0x000B30A4 File Offset: 0x000B12A4
 protected override DropDownListItem[] CreateListItems()
 {
     DropDownListItem[] array = new DropDownListItem[this.categories.Length];
     for (int i = 0; i < array.Length; i++)
     {
         array[i] = new DropDownListItem(this.categories[i].Name, CategoryDropDownList.GetCategoryHtml(this.categories[i]), true);
     }
     return(array);
 }