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)
パラメーター説明
対象型。
Fromソース型。
パラメーター説明
argsFrom …変換して対象配列にプッシュする値。

ReturnValue

Array containing converted copies of all arguments in the same order.

参照