Inconsistent Accessibility: Parameter type is less accessible than method

Constructor of public class clients is public but it has a parameter of type ACTInterface that is private (it is nested in a class?). You can’t do that. You need to make ACTInterface at least as accessible as clients.

Leave a Comment