I have a problem while trying to use AdjacencyGraph class of QuickGraph package. Allow me to show my code as first and then describe the problem:
using System.Collections.Generic;
using QuickGraph;
public class StrategicMap
{
private IList<Fraction> fractions;
private AdjacencyGraph<ProvinceOnMap, EdgeOnMap> provinces;
public StrategicMap(IList<Fraction> fractions, AdjacencyGraph<ProvinceOnMap, EdgeOnMap> provinces)
{
this.fractions = fractions;
this.provinces = provinces;
}
I'm using a proper(?) import, well, "using". However, the compiler still doesn't know which class I refer to. From QuickGraph.Contracts
or from QuickGraph
.
Here is the last screenshot, which is telling more about the prob: