I faced unhandled loop in subtraction
@MvcHtmlString.Create(test.Intro).ToHtmlString().Substring(0, 50).
Anyone knows how I can get this substring ? Thanks for your help!
You can simply subtract by
@MvcHtmlString.Create(test.Intro.Substring(0, 50))
Please don't forget to mark as answer if it helps you! Thanks