<PackageReference Include="System.Reactive" Version="4.0.0" />

IZip

interface IZip
namespace System.Reactive.Linq.ObservableImpl { internal interface IZip { void Next(int index); void Fail(Exception error); void Done(int index); } }