Interfaces cannot contain fields
An interface can contain methods and properties but not fields.
The following sample generates CS0525:
namespace x { public interface clx { public int i; // CS0525 } }