View doesn't see class and public static
问题 This is my helper in my View. (I want to list state choices in pulldown). @Html.DropDownListFor(model => model.State, SelectListItemHelper.GetStateList()) I get this error: CS0103: The name 'SelectListItemHelper' does not exist in the current context I put this class in my one and only controller that has all my Create, Edit, Delete Action Results. I made another public class below it. Used this link for my states info: How To Create Select List public class SelectListItemHelper { public