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

Remove() public method

Removes a byte from the collection.
public Remove ( byte b ) : void
b byte the byte to remove
return void
        public void Remove(byte b)
        {
            List.Remove(b);
        }