ProtoFlux:CharsToString
From Resonite Wiki
More actions
Chars To Strings
Strings
The Chars To Strings node takes in a Collection of Chars and converts it into a string.
Inputs
Values (IEnumerable<Char>)
The list of characters to form into a string.
Outputs
* (String)
The resulting string from the collection.
Examples

Any collection that supports char and is numerable(Array/List).
Example on the left does so using SyncFieldList<char> to IEnumerable<Char> cast.