intellisense problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dan Holmes

    #1

    intellisense problem

    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.Transaction Component,
    IProductService
    {

    }

    I tried explicitly as well.. same message.

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

    Anyone seen this before?

    dan
  • Chris V

    #2
    Re: intellisense problem

    On Sep 28, 8:28 am, Dan Holmes <danhol...@bigf oot.comwrote:
    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.Transaction Component,
    IProductService
    {
    >
    }
    >
    I tried explicitly as well.. same message.
    >
    In the above code "IAF.Transactio nComponent" 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.

    Comment

    Working...