New style partially complete
This commit is contained in:
@@ -160,5 +160,15 @@ namespace MileageTraker.Web.Utility
|
||||
var i = 0;
|
||||
while (true) yield return i++;
|
||||
}
|
||||
|
||||
public static MvcHtmlString Concat(this MvcHtmlString f, MvcHtmlString s)
|
||||
{
|
||||
return MvcHtmlString.Create(f.ToString() + s);
|
||||
}
|
||||
|
||||
public static MvcHtmlString Concat(this MvcHtmlString f, string s)
|
||||
{
|
||||
return MvcHtmlString.Create(f + s);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user