This is the best video I have seen in this topic. Thank You!!
@WebGentle10 ай бұрын
Thank you for your words 🙏
@rokckerzzzz6080 Жыл бұрын
Please make a video on all collection types. Eg. IEnumerable, IList, List, ICollection,Dictionary along with its differences. Thanks
@prafulbhoir8893 Жыл бұрын
Very Nice Explanation
@gkmishra2009 Жыл бұрын
Could you please make video on below question.I got this in an interview Diffrence between Abstract Class and Concreate class Difference between Finalize Method and Finalize block Diffrent type of Garbage Collection method how to handle Exception using Middleware in Dot Net core Exposing Entity will create problem in Entity Framework How we handle it How we validate Entity in Entity Framework Two Interface have same method how we implement and call? without using loop how we do bulk insert and update in sql server? how map the data from model to database table if the column are diffrent? how map data from list to model using linq query? how join two table using linq? how join two list using linq? what happen if action parameter not matched with any method? what is scope of a classs object? how garbage collector know which objects needs to be deleted? Entity framework -model mapping and how many type of model
@WebGentle Жыл бұрын
Thankyou for the suggestion. These are interesting topics . Will definitely create these videos ASAP
@manishv.8167 Жыл бұрын
Where is the playlist for c# I can't see
@gkmishra2009 Жыл бұрын
Please give solution.without using string function List X= {"S", "V", "R", "L" } List Y= {"S", "V", "R", "L" } O/p List Z= {"SS", "VV", "RR", "LL" }
@WebGentle Жыл бұрын
List x = new() { "S", "V", "R", "L" }; List y = new() { "S", "V", "R", "L" }; var z = x.Zip(y).Select(x => x.First + x.Second).ToList(); //-------------- Output: {"SS", "VV", "RR", "LL" }
@gkmishra2009 Жыл бұрын
@@WebGentle without using zip
@ZebiGreay6 ай бұрын
How many years of experience this question was asked