Skip to content

Instantly share code, notes, and snippets.

@radleta
Created September 11, 2012 12:32
Show Gist options
  • Save radleta/3698082 to your computer and use it in GitHub Desktop.
Save radleta/3698082 to your computer and use it in GitHub Desktop.
MVC 4 Razor Helper: BullList
@helper BullList(IEnumerable<string> list)
{
var first = true;
foreach (var str in list)
{
if (!first)
{
<text> &bull; </text>
}
else
{
first = false;
}
<text>@str</text>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment