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

Add() public method

Adds a byte into the collection.
public Add ( byte b ) : void
b byte the byte to add
return void
        public void Add(byte b)
        {
            List.Add(b);
        }