Método System::ObjectExt::ToString
ObjectExt::ToString(const char_t *) method
Sustitución del método ToString de C# para que funcione con cualquier tipo C++.
static String System::ObjectExt::ToString(const char_t *obj)
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | const char_t * | String literal para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(const Nullable<T>&) method
Sustitución del método ToString de C# para que funcione con cualquier tipo C++.
template<typename T> static String System::ObjectExt::ToString(const Nullable<T> &obj)
| Parámetro | Descripción |
|---|---|
| T | Tipo Nullable. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | const Nullable<T>& | Objeto Nullable para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class Nullable
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(const T&) method
Sustitución del método ToString de C# para que funcione con cualquier tipo C++.
template<typename T> static std::enable_if<std::is_enum<T>::value, String>::type System::ObjectExt::ToString(const T &obj)
| Parámetro | Descripción |
|---|---|
| T | Tipo Enum. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | const T& | Valor Enum para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(const T&) method
Sustitución del método ToString de C# para que funcione con cualquier tipo C++.
template<typename T> static std::enable_if<IsSmartPtr<T>::value, String>::type System::ObjectExt::ToString(const T &obj)
| Parámetro | Descripción |
|---|---|
| T | Tipo de puntero inteligente. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | const T& | Valor SmartPtr para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(const T&) method
Sustitución del método ToString de C# para que funcione con cualquier 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)
| Parámetro | Descripción |
|---|---|
| T | Tipo de estructura. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | const T& | Valor de estructura para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(T&&) method
Sustitución del método ToString de C# para que funcione con cualquier 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)
| Parámetro | Descripción |
|---|---|
| T | Tipo escalar. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | T&& | Valor escalar para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(T&&) method
Sustitución del método ToString de C# para que funcione con cualquier 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)
| Parámetro | Descripción |
|---|---|
| T | Tipo escalar. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | T&& | Valor escalar para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(T&) method
Sustitución del método ToString de C# para que funcione con cualquier 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)
| Parámetro | Descripción |
|---|---|
| T | Tipo de puntero inteligente o ExceptionWrapper. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | T& | Puntero inteligente o ExceptionWrapper para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(T&) method
Sustitución del método ToString de C# para que funcione con cualquier 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)
| Parámetro | Descripción |
|---|---|
| T | Tipo escalar. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | T& | Valor escalar para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++
ObjectExt::ToString(T&) method
Sustitución del método ToString de C# para que funcione con cualquier 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)
| Parámetro | Descripción |
|---|---|
| T | Tipo de estructura. |
| Parámetro | Tipo | Descripción |
|---|---|---|
| obj | T& | Valor de estructura para convertir a cadena. |
ReturnValue
String representation of obj.
Ver también
- Class String
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++