Metodo System::ObjectExt::ToString
ObjectExt::ToString(const char_t *) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
static String System::ObjectExt::ToString(const char_t *obj)
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | const char_t * | letterale String da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(const Nullable<T>&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static String System::ObjectExt::ToString(const Nullable<T> &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo Nullable. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | const Nullable<T>& | oggetto Nullable da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class Nullable
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(const T&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<std::is_enum<T>::value, String>::type System::ObjectExt::ToString(const T &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo Enum. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | const T& | valore Enum da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(const T&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<IsSmartPtr<T>::value, String>::type System::ObjectExt::ToString(const T &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo smart pointer. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | const T& | valore SmartPtr da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(const T&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<!IsSmartPtr<T>::value &&!std::is_scalar<T>::value &&!IsNullable<T>::value, String>::type System::ObjectExt::ToString(const T &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo struttura. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | const T& | valore struttura da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(T&&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<!IsSmartPtr<T>::value &&std::is_scalar<T>::value &&!std::is_enum<T>::value, String>::type System::ObjectExt::ToString(T &&obj)
| Parametro | Descrizione |
|---|---|
| T | tipo scalare. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | T&& | valore scalare da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(T&&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<!IsSmartPtr<T>::value &&!std::is_scalar<T>::value &&!IsNullable<T>::value &&!std::is_reference<T>::value, String>::type System::ObjectExt::ToString(T &&obj)
| Parametro | Descrizione |
|---|---|
| T | tipo scalare. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | T&& | valore scalare da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(T&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<IsSmartPtr<T>::value||std::is_pointer<T>::value||IsExceptionWrapper<T>::value, String>::type System::ObjectExt::ToString(T &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo smart pointer o ExceptionWrapper. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | T& | smart pointer o ExceptionWrapper da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(T&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<!IsSmartPtr<T>::value &&std::is_scalar<T>::value &&!std::is_enum<T>::value, String>::type System::ObjectExt::ToString(T &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo scalare. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | T& | valore scalare da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++
ObjectExt::ToString(T&) method
Sostituzione del metodo ToString di C# per funzionare su qualsiasi tipo C++.
template<typename T> static std::enable_if<!IsExceptionWrapper<T>::value &&!IsSmartPtr<T>::value &&!std::is_scalar<T>::value &&!IsNullable<T>::value, String>::type System::ObjectExt::ToString(T &obj)
| Parametro | Descrizione |
|---|---|
| T | tipo struttura. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| obj | T& | valore struttura da convertire in stringa. |
ReturnValue
String representation of obj.
Vedi anche
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Font for C++