Share via


How to: Explicitly Request Boxing

You can explicitly request boxing by assigning a variable to a variable of type Object.

Example

// 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() {
   float i = 22.22;
   i = 323.5654;
   Object ^ O = i;   // forces i to be boxed
   f(i);
   f( (Object^)i );  // boxes i
}

f(int i)
f(Object^ o)

See Also

Concepts

Implicit Boxing