I am trying to \"chunk\" up the bytes of an image. This will allow me to upload a large image in portions. I have the image currently stored as one large byte[]. I would lik
public static IEnumerable Split(this byte[] value,int bufferLength){ int countOfArray = value.Length / bufferLength; if(value.Length % bufferLength > 0) countOfArray ++; for(int i=0;i
This is my extension what I used