Shortest word in a string with LINQ
In this post, we’ll try to find the shortest word in a string using LINQ.
Read More »Shortest word in a string with LINQIn this post, we’ll try to find the shortest word in a string using LINQ.
Read More »Shortest word in a string with LINQIn this post, we’ll see how to use the tag helpers inside razor files in ASP.NET Core application.
This is a post to get the specific type of items from a mixed list of items. I have tried couple of solutions for the problem but it looks like there’s more elegant solution than my solution.
Read More »Get only specific types from List in C#In this post, we’ll see how to stream the data in ASP.NET Core SignalR. With ASP.NET Core 2.1 released, SignalR now supports streaming content.
Read More »Streaming data in ASP.NET Core SignalRBack in the days if we want to download jQuery library for a POC of a project we used to download the required js and CSS files from jquery site and then locating your folder to place your libraries within. Although, this job is being now replaced with package management systems you’ll need to install a package management system to do it for us. LibMan does it elegantly without any package manager.
Read More »LibMan – Microsoft Library Manager for client side librariesThis post is just an introductory post on the ASP.NET Core application. In this post, we’ll create an ASP.NET Core application and we’ll examine the folders and code.
If you missed my previous post on ASP.NET Core and Benefits. Take a look.
Read More »Getting started with ASP.NET Core 2.1ASP.NET Core is the new web framework for the Microsoft technologies. We’ll see the benefits of using the framework.
Every developer writes a switch case statement at least once in their life of programming but as he/she understands the switch is no longer maintainable they tend to look for patterns and do refactoring.
In this post, we’ll see what’s actually inside of a switch case statement.
Read More »How c# compiler looks at switch case statementsWhat is the difference between awaiting a method vs await a task in c#. In this post, we’ll explore the major difference between awaiting a method and awaiting a Task.