C# 1001 notes

📝 How can we check equality in .NET?🔸 The ReferenceEquals() method - checks if two reference type...
Читать далее📝 What is namespace in C#?A namespace is designed for providing a way to keep one set of names sepa...
Читать далее
✨ Here is a solution for the #challenge above
Читать далее#challenge💻 Compounding Letters | #easyCreate a function that takes a string and returns a new stri...
Читать далее
📝 How to implement the Where method in C#?The yield keyword actually does quite a lot here. It crea...
Читать далее
📝 What is an Abstract Class?The abstract modifier indicates that the thing being modified has a mis...
Читать далее
✨ Here is a solution for the #challenge above💬 At first blush, it seems tricky but, in my opinion,...
Читать далее#challenge💻 Largest Gap | #easyGiven an array of integers, return the largest gap between elements...
Читать далее
All of these interfaces inherit from IEnumerable. That interface basically lets you use the class in...
Читать далее
📝 What is the difference between a Struct and a Class in C#?Class and struct both are the user defi...
Читать далее