How to create Dontet core web api project and solution
HI Folks, In this post, we will learn how to create dotnet web-API project and solution Create Solution Create Web-webapi project Check i...
HI Folks, In this post, we will learn how to create dotnet web-API project and solution Create Solution Create Web-webapi project Check i...
br /> PDF (Portable Document Format) is a file format that has replicate all the characteristics of a printed document that you...
C# is a computer programming language. C# was created by Microsoft in 2000 to provide a modern general-purpose programming language that c...
Serialization is a process of converting a code to its binary format. Once it is converted to bytes, it can be easily stored and writte...
A Race condition occurs when two threads access the same resource and are trying to change it at the same time. The thread which will ...
Lock keyword ensures that only one thread can enter a particular section of the code at any given time. In the above Example , lock(Ob...
Async and Await keywords are used to create asynchronous methods in C. Asynchronous programming means that the process runs independent...
Different states of a thread are: Unstarted – Thread is created. Running – Thread starts execution. WaitSleepJoin – Thread calls sl...
IsAlive – contains value True when a thread is Active. Name – Can return the name of the thread. Also, can set a name for the thread...
A Thread is a set of instructions that can be executed, which will enable our program to perform concurrent processing. Concurrent pro...
Get and Set are called Accessors. These are made use by Properties. A property provides a mechanism to read, write the value of a priva...
Generics or Generic class is used to create classes or objects which do not have any specific data type. The data type can be assigned du...
Reflection is the ability of a code to access the metadata of the assembly during runtime. A program reflects upon itself and uses the m...
Synchronization is a way to create a thread-safe code where only one thread can access the resource at any given time. Asynchronous cal...
A Publisher is a class responsible for publishing a message of different types of other classes. The message is nothing but Event as dis...
A Delegate that points to more than one method is called a Multicast Delegate. Multicasting is achieved by using + and += operator.
Some of the basic string operations are: Concatenate –Two strings can be concatenated either by using System.String.Concat or by using ...
Regular expression is a template to match a set of input. The pattern can consist of operators, constructs or character literals. Regex...
n Escape sequence is denoted by a backslash (\). The backslash indicates that the character that follows it should be interpreted liter...
A String is a collection of char objects. We can also declare string variables in c#. EX : string name = “C# Questions”;...