I want to create a massive array of bytes. I. list. In C #, the following syntax was usually performed
List<byte> mylist = new List<byte>();
where, as in java, this syntax does not work, and I encountered an error and found the code below
List myList = new ArrayList();
but thatβs not what I want. Any idea where I'm wrong?
java collections list generics
CiarΓ‘n
source share