Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new in c# development. I just trying to study the interface feature. Based on the articles and notes I read about interfaces, I tried to write a sample code to implement interface based on what I understood from those notes and articles.

But when I debugging the project I got a build error

"Inconsistent accessibility: parameter type 'StartMachine' is less accessible than method 'SwitchBoard.switchPress(StartMachine)'".

What is the problem here ?. or Did I implemented the interface in correct way ? or Is my concept about interface is wrong ?..

Please help. Thanks in advance.

I posted my code below.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        StartMachine s1 = new Machine1();
        SwitchBoard switch1 = new SwitchBoard();
        switch1.switchPress(s1);
    }
}

interface StartMachine
{
    void startMachine();
}

public class Machine1 : StartMachine
{
    public void startMachine()
    {
        HttpContext.Current.Response.Write("Machine 1 Started");
    }
}

public class Machine2 : StartMachine
{
    public void startMachine()
    {
        HttpContext.Current.Response.Write("Machine 2 Started");
    }
}

public class SwitchBoard
{
    public void switchPress(StartMachine switchNum)
    {
        switchNum.startMachine();
    }
}
share|improve this question
2  
The convention for interfaces is prefacing them with a capital "I"... really recommend you follow that convention, it will make your code much easier to read. IStartMachine – Jeremy Holovacs Jan 18 '12 at 15:18
Thanks jeremy. I will follow the code convention in future. – Arun Jan 18 '12 at 15:44

4 Answers

up vote 8 down vote accepted

You need to put a public access modifier in front of your interface. The Machine1/2 classes are public, but your interface is defaulting to internal. This is less accessible than public.

Set interface to public access modifer:

public interface StartMachine {...}

Alternatively, you could change your classes to be:

internal class Machine1: StartMachine {...}
internal class Machine2: StartMachine {...}

For more information on access modifiers, take a look on MSDN.

Correction::

The Switchboard class and switchPress method are public. However, the switchPress method is attempting to access the StartMachine.startMachine (ugh, ambigious naming) method, which is internal (by default). You need to either change the StartMachine interface to be public, or change Switchboard/switchPress tointernal.

share|improve this answer
Thanks Jason... – Arun Jan 18 '12 at 15:46

Consider the error message, you have an "inconsistent accessibility" between your method and your interface. The fix is simple, mark your interface public.

public interface StartMachine

You have a public method that accepts a StartMachine, yet the interface itself was not marked public. External code would be able to see the method yet not be able to provide the appropriate argument to it.

share|improve this answer
Thanks Anthony... – Arun Jan 18 '12 at 15:46

Make your interface public.

public interface StartMachine 
{
    ...
}
share|improve this answer
Thanks Jeremy.... – Arun Jan 18 '12 at 15:46

As others have said, mark the interface public. I'll add that I think the confusion here is that while all interface members are automatically public, the interface itself does not have to be. You can have private interfaces for use only internally to a library.

share|improve this answer
Thanks Joel.... – Arun Jan 18 '12 at 15:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.