giovedì 19 aprile 2018

c# convertire un list string a byte array

Il frammento di codice qui di seguito illustra una tecnica di come convertire una oggetto di tipo list string in byte.

var Righe = new List();

Righe = GetDati();


 byte[] convertListStringAsBytes = Righe.SelectMany(s => System.Text.Encoding.ASCII.GetBytes(s)).ToArray();



Nessun commento: