C# 1001 notes

📝 What is difference between late binding and early binding in C#?🔸 Early Binding or Static Bindin...

Читать далее

​​❓What do the following acronyms in .NET stand for: IL, CIL, MSIL, CLI and JIT?IL, or Intermediate...

Читать далее

📝 What interface should your data structure implement to make the Where method work?Implementing IE...

Читать далее

​​❓Explain what inheritance is, and why it’s importantInheritance is one of the most important conc...

Читать далее

📝 Test if a Number belongs to the Fibonacci SeriesA positive integer ω is a Fibonacci number if and...

Читать далее

​​❓Explain the differences between an Interface and an Abstract Class in .NET?An interface merely d...

Читать далее

📝 Explain the difference between Task and Thread in .NET🔸 Thread represents an actual OS-level thr...

Читать далее

📝 Why to use of the IDisposable interface?The "primary" use of the IDisposable interface is to clea...

Читать далее

The answer to the previous question is: yes, you can catch System.Exception and switch on the except...

Читать далее

📝 Is there a way to catch multiple exceptions at once and without code duplication?Consider this co...

Читать далее