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 123456import System; var obj = {}; BoxedExternal toInternal = new BoxedExternal(obj);var backToExternal = toInternal.unbox(); Share HTML | BBCode | Direct Link