This topic has not yet been rated - Rate this topic

Compiler Error CS0525

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
   }
}
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ