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