System.Windows.Forms.ByteCollection.AddRange C# (CSharp) Метод

AddRange() публичный Метод

Adds a range of bytes to the collection.
public AddRange ( byte bs ) : void
bs byte the bytes to add
Результат void
        public void AddRange(byte[] bs)
        {
            InnerList.AddRange(bs);
        }