HtmlFormattableString Constructeurs

Définition

Surcharges

HtmlFormattableString(String, Object[])

Crée un nouveau HtmlFormattableString avec le donné format et args.

HtmlFormattableString(IFormatProvider, String, Object[])

Crée un nouveau HtmlFormattableString avec le donné formatProvider, format et args.

HtmlFormattableString(String, Object[])

Crée un nouveau HtmlFormattableString avec le donné format et 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())

Paramètres

format
String

Chaîne de format composite.

args
Object[]

Tableau qui contient des objets à mettre en forme.

S’applique à

HtmlFormattableString(IFormatProvider, String, Object[])

Crée un nouveau HtmlFormattableString avec le donné formatProvider, format et 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())

Paramètres

formatProvider
IFormatProvider

Objet qui fournit des informations de mise en forme propres à la culture.

format
String

Chaîne de format composite.

args
Object[]

Tableau qui contient des objets à mettre en forme.

S’applique à