ProtoFlux:Box: Difference between revisions

From Resonite Wiki
cleanup
add unbox to see also
 
Line 26: Line 26:
The converted value as an object.
The converted value as an object.


== See Also ==
== See also ==
 
* [[ProtoFlux:Unbox]] for unboxing objects into their underlying type
* [https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/types/boxing-and-unboxing Microsoft documentation on C# boxing and unboxing]
* [https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/types/boxing-and-unboxing Microsoft documentation on C# boxing and unboxing]


[[Category:ProtoFlux:Core]]
[[Category:ProtoFlux:Core]]

Latest revision as of 16:23, 18 April 2025

Box
Box
*
Core

The Box<T> node takes in a value type and converts it to an object.

Inputs

Box (Generic)

The value to box into an object.

Outputs

* (Object)

The converted value as an object.

See also