Is it forbidden in C# to implement a default constructor for a generic class?
If not, why the code below does not compile? (When I remove it c
You don't provide the type parameter in the constructor. This is how you should do it.
public class Cell { public Cell() { } }