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 } }