What exactly is this error message complaining about?
I'm trying to create a node class that can hold a value and point to other nodes, as well as be expanded to have more information embedded inside each of the nodes. The recursive templates are giving me some issues though.
public class ColoredNode<T> : Node<ColoredNode<T>, T>
where T : IComparable
{
public ConsoleColor Color;
}
public class BaseNode<T> : Node<BaseNode<T>, T>
where T : IComparable
{
}
abstract public class Node<N, T>
where N : Node<N, T>, new()
where T : IComparable
{
public N Parent;
public N Child;
public T Value;
}
GenericArguments[1], 'T', on 'Node`2[N,T]' violates the constraint of type parameter 'T'.
I managed to get a repro case as simple as:
I noticed that the error message that was being thrown though was in my test cs project, and not the cs project that the Node class was in. However, there was no line or file associated with the error. If I excluded my test project from the solution though, the solution built successfully.
I don't know why this was the case, but I finally tried excluding the test project's automatically generated folder "Test References", which had a DataStructures.accessor file in it. Excluding the file seemed to fix the issue.