Banketeshvar Narayan, C# Corner

Banketeshvar Narayan

C# Corner

India

Contact Banketeshvar

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 Banketeshvar:

Getting Started With .NET 5.0

This article explains how to install .NET 5.0 and create a new Web Application with it. → Read More

Getting Started with the Windows Azure Function App

This article explains how we can create Azure function apps from the Azure portal using C# and .NET Core. We are going to create “HttpTrigger” and “TimerTrigger” functions on the Azure portal. → Read More

Introduction To Angular Pipes

This article explains how to use Angular built-in pipes like uppercase, lowercase, titlecase, date, percent, number, currency, slice and json pipe and how to create your customized pipes as well. → Read More

C# 7.2 - "In" Parameter Method Overloading Tiebreaker

This article explains the “in” parameter method overloading with Visual Studio 2017 Version 15.6. Preview 2. → Read More

Exploring Angular Fundamental With Visual Studio 2017

This article explains the fundamentals of Angular by creating a simple Angular application with Visual Studio 2017 using the default template available with .NET Core. → Read More

C# 7.2 - In Parameter And Performance

In C# 7.2, “in parameter” has been introduced which allows passing read-only reference of a variable. → Read More

C# 7.2 New Features With Visual Studio 2017

This article explains the new features of C# 7.2. It covers ‘ref readonly’, ‘private protected’ access modifier, Digit Separator After Base Specifier (Leading Digit Separator) and Non-trailing named arguments. → Read More

C# 7.0 And C# 7.1 New Features

This article explains the new features of C# 7.0 & C#7.1. It covers new features like Discards, Pattern Matching, Generalized async return types, Async Main (Main Method returning Task), Infer Tuple Element Names, Default Literal Expressions & Type Inference and Pattern Matching with Generics. → Read More

Installing And Using .NET 4.7.x, .NET Core 2.0, And C# 7.x With VS 2017

This article explains how to install and use .NET Framework 4.7, .NET Framework 4.7.1 & .NET Core 2.0 and troubleshooting if you are getting an exception while installing these latest components. This article also explains how to use the different versions of C#, e.g. C# 7, C# 7.1, C# 7.2 with Visual Studio 2017 and installing multiple instances of Visual Studio 2017 side by side. → Read More

Running C# 7 Code With Visual Studio Code Editor

This article explains that how can we run C# 7 code with Visual Studio Code Editor. → Read More

Expression Bodied Indexers And Operators With C# 7

This article explains about expression bodied indexers and expression bodied operator overloading with C# 7. → Read More

Understanding ref And out With C# 7

This article explains the usage of ‘ref’ & ‘out’ in depth along with the enhancement done in C# 7. → Read More

Web API Architecture And Dependency Injection Best Practices

In this article, you will learn about Web API architecture and Dependency Injection best practices. → Read More

Basic Interview Tips In C#

In this article, you will the learn basic interview tips in C# → Read More

Understanding Delegates In C#

What is Event Events are signal for action/notification and a mechanism to communicate between objects. The object raises the event but it doesn’t explicitly require to know the object that will handle the event. Events can help us to create a loosely coupled application. We can also use the events for extending the application. The object that raises the event do not need to explicitly know the… → Read More

Resolving ASP.NET 5 DNVM Upgrade Issue And Changing DNX Version

In this article I am going to explain about DNVM upgrade, uninstall DNVM, re-install DNVM, resolving the DNVM multiple version upgrade issue with user name having space. ASP.NET 5 is not yet released officially and the latest version of ASP.NET 5 is RC1. To create, build, run & host ASP.NET 5 application we need DNVM, DNX and DNU. Issue with DNVM Upgrade While searching on the internet for DNVM… → Read More

Creating ASP.NET 5 Web Application With Visual Studio Code

In this article I am going to explain about creating a web application in ASP.NET 5 with Visual Studio Code and Yeoman. If you are not aware about Yeoman & Visual Studio Code then please read these articles: So in this way you can remove all the 99 warnings. While removing warning you can notice that Visual Studio Code Editor is displaying a separate section “WORKING FILES”. In the above… → Read More

Evolution And History Of C# 6 With Visual Studio 2015

In this article I will explain about C# all versions from C# 1.0 to C# 6.0 and Visual Studio Version from Visual Studio 2002 (7.0) to Visual Studio 2015 (14.0). But discussion will be more emphasized on C# 6 and Visual Studio 2015. C# 6 introduced about a year ago and it has a lot of new features and after release of Visual Studio 2015 C# 6 became the default language version of C#. If you are… → Read More

ASP.NET 5 With Visual Studio Code: Part 2

This article is a part of article series on ASP.NET 5 with Visual Studio Code. In last article I discussed about ASP.NET 5, Node.js, YEOMAN & Visual Studio Code. I will also discuss about Gulp, Grunt, Bower in further articles but not in this post. If you missed previous article you can go through the following link: After writing the first article of the series I felt that beginners and some… → Read More

ASP.NET 5 With Open Source

* Yo - the scaffolding tool from Yeoman. * A package manager, such as bower or npm. * A build tool, such as Grunt or Gulp. * Run—cmd—it will open console window. * Go to the current directory (in my case current directory is, “D:\VSCode\MyFirstConsoleApplication”). * Write dnx MyFirstConsoleApplication (name of your console application). It will show you the output in the console window, I know… → Read More