C# Questions Flashcards
What does the acronym CLR stand for?
Common Language Runtime:
The CLR is a virtual machine component of the .NET framework that manages the execution of any .NET program.
Can override of a function be possible in the same class?
No, method overriding is a process of calling functions from base class in the derived class.
Define a variable in C#
Variables are containers used to store data values.
What is Recursion?
Recursion refers to the process of making a function call itself. For instace to directory o file searching.
What is a multicasting delegate?
Multicasting delegates allow users to invoke multiple callbacks.
It can refer to multiple methods and functions having the same signature at one time.
What are namespaces?
Namespaces are used to organize code in distinct groups. For instance: System, System.Collection.Generics, LINQ,IO, Text etc