OpenStory.Common.Arrays.FastJoin C# (CSharp) Method

FastJoin() public static method

Concatenates the provided byte arrays.
Thrown if is .
public static FastJoin ( ) : byte[]
return byte[]
        public static byte[] FastJoin(params byte[][] arrays)
        {
            Guard.NotNull(() => arrays, arrays);

            return FastJoinList(arrays);
        }

Same methods

Arrays::FastJoin ( IList arrays ) : byte[]