I have a method that is returning a list of strings. I simply would like to display that list in a view as plain text.
Here\'s the list from the controller:<
You can do it as follows in the view,
@foreach (var item in @Model) { @item.PropertName }