@using AntDesign.Internal @using AntDesign.Select.Internal @namespace AntDesign @inherits AntInputComponentBase @typeparam TItemValue @typeparam TItem
@if (SelectOptions != null) {
@if (CustomTagSelectOptionItem != null) { } @SelectOptions @if (AddedTags != null) { foreach (var selectOption in AddedTags) { } }
} else if (SelectOptions == null) {
@{ @if (!IsGroupingEnabled) { foreach (var selectOption in SortedSelectOptionItems) { } } else { } }
} @if (AllOptionsHidden()) {
@if (NotFoundContent != null) { @NotFoundContent } else { }
} @if (DropdownRender != null) { @DropdownRender(default) }