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

Abhay ShankerPosted Apr 4, 2014, 1:21 AM
Jignesh TrivediPosted Apr 4, 2014, 2:59 AM
hi,
This is called Generic Interface. This are very useful to avoid boxing and unboxing operation of value types.
Please refer
http://msdn.microsoft.com/en-us/library/kwtft8ak.aspx