Good afternoon, it’s actually the time when I need to work with an array of bytes, and I’m not talking about them bye, bye, I studied them briefly, the essence of the issue.
I have an array of 'Data' bytes, and I need to transfer them to 'SendAsync (data.Data, 20);'
If I pass them directly, I get an exception - StackOverflowException.
And as I understand it, I need to create some sort of BlockSize (Or something like this) of the type - var buff = new byte [3840];
This is what SendAsync takes - 
Actually what should I do?

StackOverflowExceptionarises from a recursive call without checking. Arrays of bytes have nothing to do with it, look for an error elsewhere with the debugger. - VladD