unbox

Summary

Unboxes the boxed external object to give it an external type.

Usage

public external unbox()

Returns

The externally-typed object that was boxed by BoxedExternal.

Description

Unboxes the boxed external object to return the externally-typed object.

Examples

Basic Usage
1
2
3
4
5
6
import System;
 
var obj = {};
 
BoxedExternal toInternal = new BoxedExternal(obj);
var backToExternal = toInternal.unbox();

Share

HTML | BBCode | Direct Link