2
Answers

What is the use of Interface <T>?

Renjith V S

Renjith V S

10y
799
1
Hi,
    I have the below code in my interface. I don't know the exact use of  <T> used in interface. And also please explain each terms in the code.
public interface IIntreface<T> : IDisposable
IEnumerable<T> GetList(Object Object);
T GetItem(Object Object);
Int32 Save(Object Object);
}
 
 
Thanks 

Answers (2)