I have the following inside of my view
@Html.DisplayFor(modelItem => item.FirstName)
I need to get the first initial of the First N
This worked for me (no helper):
@item.Description.ToString().Substring(0, (item.Description.Length > 10) ? 10 : item.Description.Length )