Ehsan-org / ASP.NET-FirstProject

1 stars 0 forks source link

researched : IEnumerable / ICollection / IList #39

Open ehsan-nadernezhad opened 6 days ago

ehsan-nadernezhad commented 6 days ago

Overview

This guide will help you understand the differences between IEnumerable, ICollection, and IList in .NET programming. These interfaces are crucial for managing collections of objects, and knowing when to use each can enhance your coding efficiency. Key Concepts

1. IEnumerable

ICollection**

IList**

Feature IEnumerable ICollection IList Read-only Yes No No Add/Remove No Yes Yes Indexing No No Yes Deferred Execution Yes No Image Image Image Image No