list to byte[]

List<string> data =...
byte[] dataAsBytes = data
 
.SelectMany(s =>Text.Encoding.ASCII.GetBytes(s))
 
.ToArray();

你可能感兴趣的:(String)