How to convert UTF-8 string to byte[] in u-sql custom Extractor?

325 Views Asked by At

I am converting the string to byte[] using

byte[] text = System.Text.Encoding.UTF8.GetBytes(string_value);

outputrow.Set(i, text);

But the output csv is not having the byte[] column. I think the column is not created for the records.

Is there any other way to do this?

0

There are 0 best solutions below