<ReadOnlyMemory>Tostring isn't what I expected

Hi devs, is the ToString node for ReadOnlyMemory supposed to do this? I thought it would output the actual string.
image

Regards, H

it might only return the string if it is ReadOnlyMemory<char>, if I understand this correctly:

For ReadOnlyMemory, returns a new instance of string that represents the characters pointed to by the memory. Otherwise, returns a String with the name of the type and the number of elements.

Ah, I see what you mean. Thanks @tonfilm

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.