Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# interface property implementation

interface IAlpha
{
    IBeta BetaProperty { get; set; }
}

interface IBeta
{

}

class Alpha : IAlpha
{
    public Beta BetaProperty { get; set; } // error here
}

class Beta : IBeta
{

}

'InterfaceTest.Alpha' does not implement interface member 'InterfaceTest.IAlpha.BetaProperty'. 'InterfaceTest.Alpha.BetaProperty' cannot implement 'InterfaceTest.IAlpha.BetaProperty' because it does not have the matching return type of 'InterfaceTest.IBeta'.

My question is why is a property implementation restricted to the very same type. Why can't I use the derived type instead?

like image 394
karaxuna Avatar asked Dec 25 '12 08:12

karaxuna


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.


2 Answers

You have to implement the exact same interface. For example, this should be valid:

 IAlpha alpha = new Alpha();
 alpha.BetaProperty = new SomeOtherIBetaImplementation();

... but that wouldn't work with your code which always expects it to be a Beta, would it?

You can use generics for this though:

interface IAlpha<TBeta> where TBeta : IBeta
{
    TBeta BetaProperty { get; set; }
}

...

public class Alpha : IAlpha<Beta>

Of course, that may be overkill - you may be better just using a property of type IBeta in Alpha, exactly as per the interface. It depends on the context.

like image 118
Jon Skeet Avatar answered Oct 14 '22 17:10

Jon Skeet


An interface declares a set of methods the class will have, so anyone using that interface knows what to expect.

So, if you're implementing that interface, you must implement the exact interface, so all the other users get what they expected.

like image 43
Yochai Timmer Avatar answered Oct 14 '22 17:10

Yochai Timmer