コード例 #1
0
ファイル: HtmlBadge.cs プロジェクト: GeorgeFromGib/Hammonds
 public static MvcHtmlString Badge(this HtmlHelper helper, BadgeType badgeType, IconParameters icon, string text)
 {
     return(BadgeConstructor.ConstructBadge(badgeType, IconConstructor.ConstructIcon(icon) + " " + text));
 }
コード例 #2
0
ファイル: HtmlBadge.cs プロジェクト: GeorgeFromGib/Hammonds
 public static MvcHtmlString Badge(this HtmlHelper helper, BadgeType badgeType, string text)
 {
     return(BadgeConstructor.ConstructBadge(badgeType, text));
 }