NuGet.StreamExtensions.ContentEquals C# (CSharp) Méthode

ContentEquals() public static méthode

public static ContentEquals ( this stream, Stream otherStream ) : bool
stream this
otherStream Stream
Résultat bool
        public static bool ContentEquals(this Stream stream, Stream otherStream)
        {
            return Crc32.Calculate(stream) == Crc32.Calculate(otherStream);
        }
    }