方法: 明示的にボックス化を要求する
変数の型 Objectに変数を割り当てることによって明示的にボックス化を要求できます。
使用例
// vcmcppv2_explicit_boxing3.cpp
// compile with: /clr
using namespace System;
void f(int i) {
Console::WriteLine("f(int i)");
}
void f(Object ^o) {
Console::WriteLine("f(Object^ o)");
}
int main() {
int i = 5;
Object ^ O = i; // forces i to be boxed
f(i);
f(O);
f( (Object^)i ); // boxes i
}