System::String::Format methode
Formatteert string in C#‑stijl.
template<class...> String System::String::Format(const SharedPtr<IFormatProvider> &fp, const String &format, const Args &... args)
| Parameter | Beschrijving |
|---|
| Argumenten | Argumenten voor de op te maken string. |
| Parameter | Type | Beschrijving |
|---|
| fp | const SharedPtr<IFormatProvider>& | Opmaakprovider die wordt gebruikt om argumenten naar strings te converteren. |
| formaat | const String& | Opmaakreeks. |
| args | const Args&… | Argumenten voor de op te maken string. |
Zie ook
Formatteert string in C#‑stijl.
template<class...> String System::String::Format(const String &format, const Args &... args)
| Parameter | Beschrijving |
|---|
| Argumenten | Argumenten voor de op te maken string. |
| Parameter | Type | Beschrijving |
|---|
| formaat | const String& | Opmaakreeks. |
| args | const Args&… | Argumenten voor de op te maken string. |
Zie ook
Formatteert string in C#‑stijl.
template<class T> String System::String::Format(const String &format, const System::ArrayPtr<T> &args)
| Parameter | Beschrijving |
|---|
| T | Argumenten voor de op te maken string. |
| Parameter | Type | Beschrijving |
|---|
| formaat | const String& | Opmaakreeks. |
| args | const System::ArrayPtr<T>& | Argumenten voor de op te maken string. |
Zie ook
Formatteert string in C#‑stijl.
template<std::size_t,class...> String System::String::Format(std::nullptr_t, const char16_t(&format)[N], const Args &... args)
| Parameter | Beschrijving |
|---|
| Argumenten | Argumenten voor de op te maken string. |
| Parameter | Type | Beschrijving |
|---|
| formaat | std::nullptr_t | Opmaakreeks. |
| args | const char16_t(&) | Argumenten voor de op te maken string. |
Zie ook
Formatteert string in C#‑stijl.
template<class...> String System::String::Format(std::nullptr_t, const String &format, const Args &... args)
| Parameter | Beschrijving |
|---|
| Argumenten | Argumenten voor de op te maken string. |
| Parameter | Type | Beschrijving |
|---|
| formaat | std::nullptr_t | Opmaakreeks. |
| args | const String& | Argumenten voor de op te maken string. |
Zie ook