Implementing IEnumerable

  Рет қаралды 11,381

Coding Tutorials

Coding Tutorials

Күн бұрын

Пікірлер: 44
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
Anything else you want to know? Just ask. Download the source code at github.com/JasperKent/Implementing-IEnumerable Keep up to date by subscribing: kzbin.info/door/qWQzlUDdllnLmtgfSgYTCA
@stevenzh7379
@stevenzh7379 6 ай бұрын
It took me 2 hours trying to figure out what the non-generic version implementation is until I came across your video, thank you thank you thank you!!!
@williamturns1647
@williamturns1647 2 жыл бұрын
Tne most complete explanation of the IEnumerable interface on the internet!
@mrsajjad30
@mrsajjad30 2 жыл бұрын
I highly admire your level of understanding with the topic and what a beautiful way to present all those concepts in a precise way. Thank you so much for making and sharing this gold with the community.
@johnyw1049
@johnyw1049 3 жыл бұрын
Mr Kent You are amazing . I never thought I could find such a video anywhere . TY
@theoceandragongaming
@theoceandragongaming Жыл бұрын
That some in depth explanation. I never got that before.
@MankritQuantum
@MankritQuantum Жыл бұрын
brilliant video.Must see and try if Enumerable is giving you any issue
@oblivion3799
@oblivion3799 3 жыл бұрын
Best of video about ienum ... You cover all things about it ... Thank you so much
@andreivarga8440
@andreivarga8440 Жыл бұрын
Very good explanations, keep up the good work!
@dennisnaiden4747
@dennisnaiden4747 3 жыл бұрын
So using: " _somevariable.Count " does not iterate via IEnumerable under the hood ? If "_somevariable.Count " does not iterate fully in first place, why i couldnt set .Count as condition in a for-loop and be same memory efficient ? Im new to C#.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
Good question. For a collection which has a Count property, then writing a regular for-loop is not really any different in terms of functionality or efficiency from writing a foreach-loop. However, the foreach-loop syntax tends to be easier (once you're used to it). Plus, the foreach-loop works on any collection that implements IEnumerable, whereas the for-loop has the additional requirement of having a Count.
@ddr1706
@ddr1706 2 жыл бұрын
Dope tutorial. Thanks man
@lukasmodry196
@lukasmodry196 2 жыл бұрын
Safed my day thnx mate.
@randomname6444
@randomname6444 11 ай бұрын
that seems like so much work for something so basic. having an extra class in there (bookenumerator) just for that is really unsatisfying. and then the historic non-generic version. i just want to provide the next element and eventually reset and it ends in all this boilerplate and clutter. is there no simplistic solution to this simple functionality?
@CodingTutorialsAreGo
@CodingTutorialsAreGo 11 ай бұрын
You hardly ever need to do this. In most cases you just expose the enumerator of the private collection. I've never written an enumerator for myself in commercial code.
@randomname6444
@randomname6444 11 ай бұрын
@@CodingTutorialsAreGolet me just say I'm amazed at your reply speed, thumbs up is well deserved, thank you for your work. I have a class with an array of lists at its center (my attempt at a custom hashmap). I implemented an indexer for the class and now my plan was to implement ienumerable. that would probably be one of those cases where i would have to write my own enumerator, no?
@olegsuprun7590
@olegsuprun7590 4 жыл бұрын
Great info, one question, is it possible to apply to enums? Or apply this pattern to a class with no backing collection, but be able to enumerate through its fields? For example i have a class with a lot of const string fields(100+), and i want to be able to enumerate them.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
There are ways to do both of those, but they are a bit tricky, so I'll do another video rather than try to explain here. If all goes to plan, I'll post it next Thursday.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
Actually, I realized that I've already done this for enums here: kzbin.info/www/bejne/jmqaZpV8f9uHnLs. The class of strings is a bit different, so I'll put together a video for that.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
The new video is up now: kzbin.info/www/bejne/oJzHeaR9h691i5Y
@begoing07
@begoing07 3 жыл бұрын
Thank you very much sir, that was reaaallly helpful!
@youtischia
@youtischia 3 жыл бұрын
Nice video. But why do we need Ienumerable at all ? All the work is done by Ienumerator. Ienumerable does not do anything other return Ienumerator.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
To an extent, you are right. foreach does not require the collection to implement IEnumerable, merely to have a method GetEnumerator which returns an IEnumerator. But more generally in C#, it is not enough for an object to have a method, it must declare in a standardized way that it has the method - and that's done through an interface. Thus IEnumerable declares that a class has GetEnumerator without the need for any more detailed checks.
@youtischia
@youtischia 3 жыл бұрын
@@CodingTutorialsAreGo Isnt this an unnecessary hoop to jump thru ? Since the object in your example uses a list, why doesnt the compiler make our lives easy and just realise that it already has a getenumerator ? Just because the list is in an oject shouldnt matter. The information is already there. If someone wanted to define a new one for their new container all well and good. Couldnt it all be "under the hood".
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
@@youtischia It could be done like that, but it's not the way languages like C# go. The problem would be that if you just happened to write a method called GetEnumerator that was nothing to do with this feature (unlikely in this case, but highly possible with interfaces in general) then the system would pick it up anyway. The idea is that the developer declares the behaviour they want, the compiler doesn't assume it.
@tosinmorufakinyemi6882
@tosinmorufakinyemi6882 4 жыл бұрын
good insight into the Ienumerable,. thank you sir
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
My pleasure.
@prophy6680
@prophy6680 3 жыл бұрын
Can i just make the list public so i can acces it in the foreach loop ?
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
Good question. The problem with making the list public would be (depending on circumstances) that you give the client code *too* much access. They'd to able to add to it as well as merely read it. One alternative is to give them public access but only through the IReadonlyCollection interface, which does as the name suggests.
@alex-dk2rj
@alex-dk2rj 3 жыл бұрын
@@CodingTutorialsAreGobut to me accessing books by Libray[idx] doesn’t make sense. Realistically, a library could have many properties like name, location, hours, employees, etc.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
Fair point. I think regarding a library as a collection of books is a reasonable default, but you're right; it could equally be regarded as a collection of Employees. There are various ways round that, but my instinct would be to use interfaces, so class Library : IEnumerable, IEnumerable {...} and then use explicit interface implementation to distinguish the two. If you want to use and indexer, you'd have to find another interface that includes the indexer, but indexers are so rarely used, I doubt it's worth the bother. You get ElementAt() for free as an extension to IEnumerable.
@0i0l0o
@0i0l0o 2 жыл бұрын
Beautiful.
@ThebroNight1
@ThebroNight1 4 жыл бұрын
I was expecting a KFC promotion.
@paulofernandoee
@paulofernandoee 2 жыл бұрын
Great content, thanks!
@vladmaiorov1072
@vladmaiorov1072 6 ай бұрын
Great job!
@leosilva0411
@leosilva0411 4 жыл бұрын
Nice video! Thank you!
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
Glad you liked it!
@phantastik3389
@phantastik3389 4 жыл бұрын
Wonderful!
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 жыл бұрын
Cheers! :)
@mistervoldemort7540
@mistervoldemort7540 Жыл бұрын
Thanks a lot
@WaahaidIWKY
@WaahaidIWKY 3 жыл бұрын
well selling chicken isn't his only hobby
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
I'd never have imagined that Colonel Sanders would sound like me when he opens his mouth.
@stewiegriffin6503
@stewiegriffin6503 2 жыл бұрын
you are very confusing, because u jumping from one thing to onother
@CodingTutorialsAreGo
@CodingTutorialsAreGo 2 жыл бұрын
Sorry.
C# Covariance
17:27
Coding Tutorials
Рет қаралды 8 М.
The Dispose Pattern
16:28
Coding Tutorials
Рет қаралды 11 М.
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН
Who is More Stupid? #tiktok #sigmagirl #funny
0:27
CRAZY GREAPA
Рет қаралды 10 МЛН
UFC 287 : Перейра VS Адесанья 2
6:02
Setanta Sports UFC
Рет қаралды 486 М.
IEnumerable 🆚 IEnumerator Interfaces in C#
34:06
tutorialsEU
Рет қаралды 29 М.
C# Equality and Hashcodes
27:05
Coding Tutorials
Рет қаралды 9 М.
IEnumerable vs IQueryable
11:39
Coding Tutorials
Рет қаралды 11 М.
C# IEnumerable & IEnumerator
25:15
Tarodev
Рет қаралды 36 М.
How To Create Extension Methods in C#
28:58
IAmTimCorey
Рет қаралды 53 М.
Stackalloc and Spans
30:17
Coding Tutorials
Рет қаралды 12 М.
C# IEnumerable (Generator) Explained
19:36
Raw Coding
Рет қаралды 18 М.
10 C# Libraries To Save You Time And Energy
33:59
IAmTimCorey
Рет қаралды 209 М.
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН