Wraps a delegate so that it can be used as a parameter to any string-formatting method (such as String.Format). For example: var textWithLink = string.Format("Please click on {0:this link}.", new FormatDelegate((text) => Html.ActionLink(text, "SomeAction"));
| Constructor | Description |
|---|---|
| FormatDelegate | Creates a format delegate that wraps a function taking the format string. |