RUVIDEO
Поделитесь видео 🙏

IEnumerable ? IEnumerator Interfaces in C# смотреть онлайн

📁 Обучение 👁️ 34 📅 03.12.2023

? Master C# and .NET programming EASILY with our best-selling C# Masterclass: https://bit.ly/47Hk3u7

Today's Advanced C# Topic is: IEnumerable and IEnumerator Interfaces

In this video you will learn what IEnumerable and IEnumerator are
What are advantages of IEnumerable and IEnumerator
When to use them
How to use them
What are advantages of using IEnumerable and IEnumerato
How IEnumerator and IEnumerable are related to lists, arrays, and other types of colletions.


The IEnumerable interface is the base Interface for many collections in C#, and its job is to provide a way of iteration through a collection. That is why we can use foreach loops to go through a List or a Dictionary. In simple English when a collection class implements the IEnumerable interface it becomes countable, and we can count each element in it individually

There are 2 versions of the IEnumerable Interface

1.IEnumerable for generic collections
2.IEnumerable for non generic collections

But since generic collections were introduced later after the non-generic ones and it is no longer recommended to use the non-generic collections in a new project due to their need to perform boxing and unboxing (converting the types of objects), we will explain how to use the IEnumerable T interface in this lesson

when it is recommended to use the IEnumerable interface:

- Your collection represents a massive database table, you don’t want to copy the entire thing into memory and cause performance issues in your application.

When it is not recommended to use the IEnumerable interface:

- You need the results right away and are possibly mutating / editing the objects later on. In this case, it is better to use an Array or a List

ienumerable vs ienumerator C#
implementing ienumerable and ienumerator
use of ienumerable and ienumerator in c#
ienumerator in c example
ienumerable vs ienumerablet
why we use ienumerable in c
ienumerable vs enumerable c
ienumerator in c# geeksforgeeks

interface in c# with example code project
tutorialsEU offers you free video tutorials about programming and development for complete beginners up to experienced programmers.
This includes C#, Unity, Python, Android, Kotlin, Machine Learning, etc.
Stay tuned and subscribe to tutorialsEU: https://goo.gl/rBFh3x

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «IEnumerable ? IEnumerator Interfaces in C#» бесплатно и без регистрации, вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.