2012-04-04 6 views

答えて

13

単に:

List<byte> myBytes = new List<Byte>(byteArray); 

それともLINQ拡張使用:

List<byte> myBytes = byteArray.ToList(); 
関連する問題