Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at How to: Unbox.
Shows how to unbox and modify a value.
Example
// vcmcppv2_unboxing.cpp
// compile with: /clr
using namespace System;
int main() {
int ^ i = gcnew int(13);
int j;
Console::WriteLine(*i); // unboxing
*i = 14; // unboxing and assignment
Console::WriteLine(*i);
j = safe_cast<int>(i); // unboxing and assignment
Console::WriteLine(j);
}
13
14
14