Skip to content

Instantly share code, notes, and snippets.

@jredh
Forked from JustLikeIcarus/HtmlHelpersIfExtension.cs
Last active August 29, 2015 14:10
Show Gist options
  • Save jredh/2aca809280a3552e733a to your computer and use it in GitHub Desktop.
Save jredh/2aca809280a3552e733a to your computer and use it in GitHub Desktop.
namespace System.Web.Mvc
{
public static class HelperExtensions
{
public static MvcHtmlString If(this MvcHtmlString value, bool evaluation)
{
return evaluation ? value : MvcHtmlString.Empty;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment