MemoryStream.TryPeek C# (CSharp) Method

TryPeek() public method

public TryPeek ( &item ) : bool
return bool
    public bool TryPeek([MaybeNullWhen(false)] out T item) => this.TryLookAhead(0, out item);