Created
September 11, 2012 12:32
-
-
Save radleta/3698082 to your computer and use it in GitHub Desktop.
MVC 4 Razor Helper: BullList
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@helper BullList(IEnumerable<string> list) | |
{ | |
var first = true; | |
foreach (var str in list) | |
{ | |
if (!first) | |
{ | |
<text> • </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