Mukesh Kumar, C# Corner

Mukesh Kumar

C# Corner

New Delhi, DL, India

Contact Mukesh

Discover and connect with journalists and influencers around the world, save time on email research, monitor the news, and more.

Start free trial

Recent:
  • Unknown
Past:
  • C# Corner

Past articles by Mukesh:

C# 8 - Pattern Matching, Indices And Ranges

C# 8.0 has many improvements to existing features including pattern, indices and ranges. Some of the improvements are discussed with example here. → Read More

All About Inheritance in C#

In this article, you will learn about Inheritance in C#. → Read More

Increase Performance Of LINQ By Parallelism

Parallelism solves many problems in the computing world if done in the right way; parallelism is not good if the task is small and needs synchronization of resources, such a scenario would hurt performance. → Read More

Getting Started With Unit Testing Using C# And xUnit

Unit Testing is a software testing approach which performs at the time of the development to test the smallest component of any software. It means rather than testing the big module in one go, you test the small part of that module. A small component in the sense, it could be any function, any property or any class which is handling the specific functionality. → Read More

Share Data Between Sibling Components In Angular Using Rxjs BehaviorSubject

Here we will discuss how to share data between sibling components using Rxjs Behavior Subject in Angular 5 project with step by step demonstration. → Read More

Building An Angular 5 CLI Project With ngx-bootstrap

This article will demonstrate how to create Angular 5 project using CLI and implement ngx-bootstrap or Bootstrap 3 with it. → Read More

Learn About Action Filters In ASP.NET MVC

This article will help you to understand filters in Asp.Net MVC and why we should use them. → Read More

Performance Check With MiniProfiler In ASP.NET MVC

MiniProfiler is an open source profiling library which monitors the performance of a .NET application. It is very lightweight and fast. Using this, we can easily track a performance issue with our application. It was created by Stack Overflow Team member. → Read More

Get Or Activate Your MSDN Subscription For Visual Studio

You can buy MSDN Subscriptions either online on msdn.microsoft.com or it can be purchased by your organization. MSDN subscriptions have so many benefits apart from getting the licensed version of the software. These benefits are as follows. → Read More

Getting Started With Razor Pages In ASP.NET Core 2.0

Today, we will talk about more about Razor pages - what actually a Razor page is, how to create Razor page applications, and some of the fundamentals of Razor pages. → Read More

Publish ASP.NET Core 2.0 Application on IIS

This article will teach you how you can deploy or host your Asp.Net Core 2.0 web application on IIS. → Read More

Top 10 New Features Of ASP.NET Core 2.0

.NET is now .NET Core and known as cross-platform and open source platform where you can build your all types of applications. An application could be a web app, desktop app, mobile app or gaming app. All type apps can be created using a single platform and it’s none other than .NET Core. → Read More

First Application In ASP.NET Core MVC 2.0

Recently Microsoft announced anew version of Asp.Net Core and that is Asp.Net Core 2.0, which has new and amazing features which not only improve performance as well as increase productivity and enhance your application making it more robust and reliable. → Read More

State Management In ASP.NET MVC

HTTP is a stateless protocol. Each HTTP request does not know about the previous request. If you are redirecting from one page to other pages, then you have to maintain or persist your data so that you can access it further. To do this, there were many techniques available in Asp.Net like ViewState, SessionState, ApplicationState etc. → Read More

Highcharts With Angular Custom Directive And Web API

We already know that DotNet Highcharts library is a client side library for charting and we can create very clean and flexible charts with minimum configuration. Using Highcharts, we can probably create all types of charts which we use in daily life, it could be a line chart, it could be a bar chart or column chart etc. → Read More

.NET Highcharts With ASP.NET MVC

This article will demonstrate how to implement DotNet Highcharts with Asp.Net MVC application. Highcharts is a JavaScript library to implement charting functionality like line chart, bar chart, column chart etc. We can create different types of charts using highcharts. Today with this article, I will try to show you how to create Highcharts in Asp.Net MVC from server side. → Read More

Web API Token Based Authentication With Angular

This article will demonstrate about how to implement Token Based Authentication in Angular JS application. In my previous article, I have explained how to implement Token Based Authentication in Web API. → Read More

Web API Token Based Authentication With Angular

Authentication is a vital process in system programming. Authentication means verifying the user who is accessing the system. Today we are using modern devices that have different types of Apps or software and sometimes we directly access the website from browser. To access this application, we probably need to pass our credentials and these systems verify it. If you are valid user then it will… → Read More

CRUD Operation With JSON File Data In C#

This article will demonstrate how to implement CRUD functionality with JSON file in a project using C# code. → Read More

Visual Studio 2017 Installation Using Offline Installer

In this article, you will get an overview of Visual Studio 2017 installation, using Offline Installer. → Read More