System::ObjectExt::ArrayInitializerCast method
ObjectExt::ArrayInitializerCast method
Converts array fundamental values (which C# does implicitly but C++ apparently does not).
template<typename To,typename ...> static std::enable_if<(std::is_fundamental<To>::value), std::array<To, sizeof...(From)>>::type System::ObjectExt::ArrayInitializerCast(From ...args)
Parameter | Description |
---|---|
To | Target type. |
From | Source types. |
Parameter | Type | Description |
---|---|---|
args | From … | Values to convert and push to target array. |
ReturnValue
Array containing converted copies of all arguments in the same order.
See Also
- Class ObjectExt
- Namespace System
- Library Aspose.PDF for C++