Telerik.Web.Mvc.UI.Fluent.EditorDropDownItemBuilder.Add C# (CSharp) Метод

Add() публичный Метод

public Add ( string text, string value ) : EditorDropDownItemBuilder
text string
value string
Результат EditorDropDownItemBuilder
        public EditorDropDownItemBuilder Add(string text, string value)
        {
            items.Add(new DropDownItem() { Text = text, Value = value });

            return this;
        }
EditorDropDownItemBuilder