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 developing Interface for a sample project i wanted it to be as generic as possible so i created a interface like below

public interface IUserFactory
{    
    IEnumerable<Users> GetAll();
    Users GetOne(int Id);
}

but then it happened i had to duplicate the interface to do below

public interface IProjectFactory
{    
    IEnumerable<Projects> GetAll(User user);
    Project GetOne(int Id);
}

if you looked at above difference is just types they return, so i created something like below only to find i get error Cannot Resolve Symbol T What am i doing wrong

public interface IFactory
{    
    IEnumerable<T> GetAll();
    T GetOne(int Id);
}
share|improve this question

3 Answers

up vote 9 down vote accepted

You need to use a generic interface/class, not just generic methods:

public interface IFactory<T>
{    
    IEnumerable<T> GetAll();
    T GetOne(int Id);
}

Defining a generic type on the interface/class ensures the type is known throughout the class (wherever the type specifier is used).

share|improve this answer
1  
+1 accepted, appreciated and saved 30 minutes from my day – Deeptechtons Nov 3 '11 at 11:54
btw is this same as your anwer public interface IFactory<Type> { IEnumerable<Type> GetAll(); Type GetOne(int Id); } – Deeptechtons Nov 3 '11 at 12:15
2  
@Deeptechtons - Almost. Type is an actual .NET class name, so this could appear ambiguous . But the name of the generic type parameter can be anything. – Oded Nov 3 '11 at 12:17

Declare the type on the interface:

public interface IFactory<T>
share|improve this answer
+1 even though yours is same as Oded's, i loved his way of explaining with reference. – Deeptechtons Nov 3 '11 at 11:55

The compiler cannot infer what the T is for. You need to declare it at the class level as well.

Try:

 public interface IFactory<T>
 {
     IEnumerable<T> GetAll();
     T GetOne(int Id);
 } 
share|improve this answer

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.