Serial.ClearReceivedBytes C# (CSharp) Méthode

ClearReceivedBytes() public méthode

Clears the received bytes. Warning: This prevents line detection and notification. To be used when no \n is expected to avoid keeping unnecessary big amount of data in memory You should normally not call this function if \n are expected.
public ClearReceivedBytes ( ) : void
Résultat void
    public void ClearReceivedBytes()
    {
        BufferIn = "";
    }