This pseudo-constructor creates a new Variant using a specified TypeInfo and raw pointer to the value.
Type of the value.
Pointer to the value.
The new Variant.
int life = 42; auto v = Variant(typeid(typeof(life)), &life);
See Implementation
This pseudo-constructor creates a new Variant using a specified TypeInfo and raw pointer to the value.