You don’t provide the type parameter in the constructor. This is how you should do it.
public class Cell<T>
{
public Cell()
{
}
}
You don’t provide the type parameter in the constructor. This is how you should do it.
public class Cell<T>
{
public Cell()
{
}
}