System.Windows.Forms.ByteCollection.Remove C# (CSharp) 메소드

Remove() 공개 메소드

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