System.Windows.Forms.ByteCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds a range of bytes to the collection.
public AddRange ( byte bs ) : void
bs byte the bytes to add
return void
        public void AddRange(byte[] bs)
        {
            InnerList.AddRange(bs);
        }