C# Class Evbpc.Framework.Utilities.Extensions.ByteArrayExtensions

Provides certian extensions for byte-array types.
Show file Open project: EBrown8534/Framework

Public Methods

Method Description
Append ( this source, byte value ) : byte[]

Appends a byte[] to another byte[].

Method Details

Append() public static method

Appends a byte[] to another byte[].
public static Append ( this source, byte value ) : byte[]
source this The byte[] to be appended to.
value byte The byte[] to be appended.
return byte[]