HtmlFormattableString Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| HtmlFormattableString(String, Object[]) |
Creates a new HtmlFormattableString with the given |
| HtmlFormattableString(IFormatProvider, String, Object[]) |
Creates a new HtmlFormattableString with the given |
HtmlFormattableString(String, Object[])
- Source:
- HtmlFormattableString.cs
- Source:
- HtmlFormattableString.cs
- Source:
- HtmlFormattableString.cs
Creates a new HtmlFormattableString with the given format and
args.
public:
HtmlFormattableString(System::String ^ format, ... cli::array <System::Object ^> ^ args);
public HtmlFormattableString(string format, params object[] args);
public HtmlFormattableString(string format, params object?[] args);
new Microsoft.AspNetCore.Html.HtmlFormattableString : string * obj[] -> Microsoft.AspNetCore.Html.HtmlFormattableString
Public Sub New (format As String, ParamArray args As Object())
Parameters
- format
- String
A composite format string.
- args
- Object[]
An array that contains objects to format.
Applies to
HtmlFormattableString(IFormatProvider, String, Object[])
- Source:
- HtmlFormattableString.cs
- Source:
- HtmlFormattableString.cs
- Source:
- HtmlFormattableString.cs
Creates a new HtmlFormattableString with the given formatProvider,
format and args.
public:
HtmlFormattableString(IFormatProvider ^ formatProvider, System::String ^ format, ... cli::array <System::Object ^> ^ args);
public HtmlFormattableString(IFormatProvider formatProvider, string format, params object[] args);
public HtmlFormattableString(IFormatProvider? formatProvider, string format, params object?[] args);
public HtmlFormattableString(IFormatProvider? formatProvider, string format, params object[] args);
new Microsoft.AspNetCore.Html.HtmlFormattableString : IFormatProvider * string * obj[] -> Microsoft.AspNetCore.Html.HtmlFormattableString
Public Sub New (formatProvider As IFormatProvider, format As String, ParamArray args As Object())
Parameters
- formatProvider
- IFormatProvider
An object that provides culture-specific formatting information.
- format
- String
A composite format string.
- args
- Object[]
An array that contains objects to format.