Как записать byte[][][] в файл txt?
Пробовал так но там выдает ошибку SerializationException: The internal array cannot expand to greater than Int32.MaxValue elements.
Path = "Assets/Ps.txt";
byte[][][] bytesArray = new byte[myList.Count][][];
//... заполняю bytesArray ...
BinaryFormatter formatter = new BinaryFormatter();
using (FileStream fileStream = new FileStream(Path, FileMode.Create))
{
formatter.Serialize(fileStream, bytesArray);
}