This topic has not yet been rated - Rate this topic

Compiler Error CS0524

'type' : interfaces cannot declare types

An interface cannot contain a user-defined type; it should contain only methods and properties.

The following sample generates CS0524:

// CS0524.cs
public interface Clx
{
    public class Cly   // CS0524, delete user-defined type
    {
    }
}

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ