<PackageReference Include="Microsoft.Packaging.Tools" Version="1.0.0-preview2-25401-01" />
System.Collections.Immutable.IBinaryTree
namespace System.
Collections.
Immutable
{
internal interface IBinaryTree
{
int Height { get; }
bool IsEmpty { get; }
int Count { get; }
IBinaryTree Left { get; }
IBinaryTree Right { get; }
}
}