Understand C# Delegates basics with its practical application
Delegates can be tricky to understand for many new developers even after going through the books and posts, but I am sure this post is going to help you understand…
A Learning and Sharing Platform for Devs & Managers
Delegates can be tricky to understand for many new developers even after going through the books and posts, but I am sure this post is going to help you understand…
How do you effectively discuss your accomplishments when it counts, such as during interviews or performance appraisals? The STAR technique is a popular method particularly useful during interviews or performance…
Q1 What is the difference between ref and out parameters? Answer: Both pass arguments by reference, but ref requires variables to be initialized before passing while out doesn’t. With out,…
Some other questions related to IQuerable and IEnumerable are: Can you explain the difference between SingleOrDefault() and FirstOrDefault() when used with IQueryable? Data Return- FirstOrDefault() returns the first element that…