intellisense problem

D

Dan Holmes

I admit this might have more to do with the IDE than the language but...

in VS2005 sp1 when i highlight the interface inherited by my class and
then choose "Implement Interface" -> Implicitly i get this message: "All
members of this type have already been implemented". The problem is the
class is empty.

public sealed class ProductService : IAF.TransactionComponent,
IProductService
{

}

I tried explicitly as well.. same message.

In the above code "IAF.TransactionComponent" is an abstract class. So i
tried "Implement Abstract Class". That gives the same message.

Anyone seen this before?

dan
 
C

Chris V

I admit this might have more to do with the IDE than the language but...

in VS2005 sp1 when i highlight the interface inherited by my class and
then choose "Implement Interface" -> Implicitly i get this message: "All
members of this type have already been implemented". The problem is the
class is empty.

public sealed class ProductService : IAF.TransactionComponent,
IProductService
{

}

I tried explicitly as well.. same message.

In the above code "IAF.TransactionComponent" is an abstract class. So i
tried "Implement Abstract Class". That gives the same message.

Anyone seen this before?

dan

Is it possible that your abstract class has methods with the same
signatures as the interface? If so, that might be what is causing the
conflict.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top