Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Interfaces cannot contain fields
An interface can contain methods and properties but not fields.
The following sample generates CS0525:
// CS0525.cs
namespace x
{
public interface clx
{
public int i; // CS0525
}
}