C# : Lambda Expression, Async, Await : Part 32
Lambda Expression It is ananonymous function that you can use to create delegate without specifying its type, They are helpfull in wr...
There is no power like knowledge and no poverty like ignorance.
Lambda Expression It is ananonymous function that you can use to create delegate without specifying its type, They are helpfull in wr...
Lock It ensures that only a single thread can access a shared resource. If same resource is accessed by multiple thread than it may a...
What is process ? The execution of program by providing the required resource required, is called process. Thread A process can...
What is dictionary ? It is a collection of key value pair When to use dictionary over list ? Dictionary is to be used when col...
Flow Select the form whom you wish to send the data, who all are the subscribers to the notification. This will make you to decide th...
Partial class It allows us to split class into 2 or more files. All these partial classes are than combine...
Generics Generics heps us to write class or method that can work with any data type It h...
Early Binding When we have the information of class and method and we use it to get the value at ...
Reflection Relection is used to get meta data of assembly during runtime, or from DLL. It is used to find information like propertie...
Attributes An attribute tag is used for declaration, which is used to provide basic information about the behaviour of...
Types Following are all types in c# Class Structure Enums Delegates Inter...
There are 5 types of access modifiers in c# Public : Accessible anywhere no restriction. Private : Accessible ...
Using single operator will check all consition if first one is true. Using double operator in if loop will not che...
Enums are said as strongly typed constants When integral numbers are used for specifying any value than enums are ...
Exception The unseen error occur when program is running is called exception. Exception Handling The unseen error occured when...
A delegate pointing to more than one function is called Multicast Delegate. When this delegate is invoked all the fun...
A delegate is a type safe function pointer ( It points towards a function with same signature) It is called function pointer because whe...
Class B and C inherits from class A. Class D inherits from Class B and C. If class D call a method from Class A, there will be ambi...
Abstract class can have implementation for some of its members. But interface cannot have implementation for any of its members. Abstrac...