1. LDAP connection 2. Search by user id 3. Retrieve all the information from Active Directory Sample code Note Add…
The exercise shows how you can add a base64 encoded image to a PDF footer. I have used Aspose library for…
As simple as it can be, Threading is about workers & asynchrony is about tasks. Asynchrony is also known as a…
A Thread pool is a collection of threads. These threads can be used to perform tasks without disturbing the primary thread. Once…
A Race condition occurs when two threads access the same resource and are trying to change it at the same time. The…
An XSD file stands for XML Schema Definition. It gives a structure for the XML file. It means it decides…
A Thread is a set of instructions that can be executed, which will enable our program to perform concurrent processing. Concurrent processing…
Generics or Generic class is used to create classes or objects which do not have any specific data type. The…
Simple as it should be A reference pointer to a method A Delegate is a variable that holds the reference…
Polymorphism The word polymorphism means having many forms. In object-oriented programming paradigm, polymorphism is often expressed as ‘one interface, multiple functions’. Polymorphism…
The singleton pattern is one of the simplest design patterns. Sometimes we need to have only one instance of our…
Pre-Requisite 1. You must signup for FREE Trial on Abbyy’s to use their API. Sign up here https://cloud.ocrsdk.com/Account/Welcome 2. Create a…
AForge Image Processing Lab is an image processing application written in C#, which includes different filters and tools available in AForge.NET framework to…
In C#, the Unicode character literal where\uXXXX the X‘s are hex characters will let you specify Unicode characters. For example: \u00A3 is…
I would like to keep it simple as much as I can so you it can be easily understood. Interface…
Using visual studio C# you can connect to mysql in three simple steps. Here we go Before we start writing…