Hi,
I have a column with data type byte[].
I need to display value of this column like a string. Is it possible to do it?
Thank you
M.
Convert byte[] to string
Convert byte[] to string
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
System.Text.Encoding.UTF8.GetString(Field);
Convert byte[] to string
Thank you,
but i need to use this conversion in Designer, no in my code. Can I add my own function to Designer?
but i need to use this conversion in Designer, no in my code. Can I add my own function to Designer?
Convert byte[] to string
Hello,
You can use this code in the designer either as an expression of the Text component or in its function.
Thank you.
You can use this code in the designer either as an expression of the Text component or in its function.
Thank you.