Apart from IEnumerable, IComparable, what other “important” (or frequently used) interfaces are there for me to know in C#.NET?
Apart from IEnumerable, IComparable, what other important (or frequently used) interfaces are there for
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Same question
Copy-Paste from there:
IEnumerable<T>(andIEnumerable): for use with foreach and LINQIDisposable: for resources requiring cleanup, used with usingIQueryable<T>: lets you execute requests against queriable data sources.INotifyPropertyChange: For data binding to UI classes in WPF, winforms and silverlightIComparable<T>andIComparer<T>: for generalized sortingIEquatable<T>andIEqualityComparer<T>: for generalized equalityIList<T>andICollection<T>: for mutable collectionsIDictionary<T,K>: for lookup collections