Open.Core.Html.ToBold C# (CSharp) Method

ToBold() public static method

Wraps the given text in elements.
public static ToBold ( string text ) : string
text string The text to wrap.
return string
        public static string ToBold(string text) { return string.Format("<b>{0}</b>", text); }