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?