I want to test the library with .NET and noticed one compile error in KcpConnection in bool ReceiveNextReliable(out KcpHeader header, out ArraySegment<byte> message). Since the message is set to out, it is required to be assigned. Setting it to an empty array segment seems like the proper way to do it.
I want to test the library with .NET and noticed one compile error in KcpConnection in
bool ReceiveNextReliable(out KcpHeader header, out ArraySegment<byte> message)
. Since the message is set to out, it is required to be assigned. Setting it to an empty array segment seems like the proper way to do it.