What is the syntax for implementing an array of an interface?
iWord is an interface.
This is the syntax for List
public class Words : List<iWord>
{
}
But this fails
With an error message invalid base type
Am I getting an error because I am asking for something stupid?
public class Words : iWord[]
{
}