@using System.Text; @model List @{ if (@Model == null || @Model.Count == 0) { } else { var sb = new StringBuilder(); foreach(var item in @Model) { sb.AppendFormat("{0}, ", item); } @sb.ToString().Substring(0, sb.Length - 2) } }