طريقة System::ObjectExt::ArrayInitializerCast
ObjectExt::ArrayInitializerCast method
يحوّل القيم الأساسية للمصفوفات (التي يقوم C# بتحويلها ضمنيًا لكن C++ يبدو أنه لا يفعل ذلك).
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 | الوصف |
|---|---|
| إلى | نوع الهدف. |
| From | أنواع المصدر. |
| Parameter | Type | الوصف |
|---|---|---|
| args | من … | القيم التي سيتم تحويلها ودفعها إلى مصفوفة الهدف. |
ReturnValue
Array containing converted copies of all arguments in the same order.
انظر أيضًا
- Class ObjectExt
- Namespace System
- Library Aspose.Page for C++