In the previous post, we have discussed how to create a windows service using the .net with visual studio project template. In this post, we will see creating a windows service using the Topshelf library. Also, We would discuss the advantage of using Topshelf over using visual studio project template. Objectives: Why Topshelf. Creating windows […]
Category: C#/.NET
Creating a windows service in .NET
In this article, we will discuss how to create windows services in .net using a visual studio project template. We will also see how to install and uninstall the windows service in the system. You can also download the source code for the windows service detailed in this post. Objectives: What is Windows Service Windows […]
.Net Interview Questions for Fresher/Experienced
This post contains the most popular interview questions for the .net framework. If you are a .net developer you must have faced these questions in your interviews or in your future interview. Here, I have listed 30 important interview questions with answers. Hope it will be a good refresher for the guys, preparing for an […]
What is GAC – Global Access Cache and how does it solve DLL hell problem?
Overview : This article talks about the assembly and types of assembly in CSharp / C#. Here, We will discuss What is GAC [Global Access Cache] and how does it solve DLL Hell problem. we will also cover the strong name concept and how to add an assembly in GAC. Let’s start the discussion : […]
Singleton Pattern in C#
What is Singleton pattern: Singleton pattern allows only one class instance to exist in the application. Singleton patterns fall under the creational patterns category of GOF. Singleton pattern allows defining a class in such a way the only one instance should exist in the lifetime of the execution of the application. Uses: Singleton pattern can be used […]