I am filling a ComboBox through an enum in MVC c #, in that combo are filled as options of the arithmetic operators combo, but I only require the symbol (+, -, *, /), when I only place the sign generates me an error
I have already placed it in double and single quotes but it still marks me that an identifier was expected, there is also another way placing the tag [Description (...)] but I could not binde this tag, the way I binded the Combo is:
@Html.DropDownList("DDLOperadores", EnumHelper.GetSelectList(typeof(EnumOperadores.MuestraOperadores)), "Selecciona el Tipo", new { @class = "form-control col-md-12" })