Just the video I was looking for! YOU sir are the man! Much love =D
@hilariouscouchpigeon94263 жыл бұрын
This is such a complex topic and you made it 10000X easier to understand. THANK YOU!
@devanshmishra77293 жыл бұрын
Very helpful video. Your way of explaining stuff is awesome. Keep creating more such videos!!
@miroslavpavlak13194 жыл бұрын
Thanks so much, you include all info I was searching for :)
@RXY76 ай бұрын
Thank you!
@fansban72926 жыл бұрын
Great Man Great! Thanks
@one111won3 жыл бұрын
You are awesome!
@ivanfernandorivasquezada63732 жыл бұрын
Thank you! helped me a lot to understand, especial in minute 9, I tried to find a example without have succeed but I find it in your video. minute 9.
@one-shot-statement4 ай бұрын
That actually runs an error saying error CS1061: List does not contain a definition for GPA and no accessible extension method GPA accepting a first argument of type List could be found (are you missing a using directive or an assembly reference?)
@ahmadwasimgermany33933 жыл бұрын
I need help concerning oop i've created a class contains some properties, One is called for example X and is from datatype integer, the other one is a list of object the question is how i could make the capacity of this list depending to this property Int that means i want that the capacity of this List will be X+1 when i create this List. Thank u
@la_sn3ak3r193 жыл бұрын
Thanks
@yusufsafa.k2 жыл бұрын
How can I make it with using contains method?
@pako_tube68982 жыл бұрын
Class Prof { public string Name; Public string FirstName; Public string AwSome = 9/10; public string getData() {Return $" the best Prof is : {Name} {FirstName} {Awsome}";} } Prof oFound = listOfProf.Find(x=>x.AwSome ==9/10); if (oFound!=null) { Console.WriteLine(oFound.getData()); } result: The best Prof is : Greg Anderson 9/10.