Skip to content

Full Stack Developer Blog

Just The Programming Blog

  • C#
  • Visual Studio
  • SQL
  • jQuery
  • Misc

C#

How to Remove Duplicate Rows in MS SQL Server

If there are duplicate rows in MS SQL Server database tables, it may be necessary to remove duplicate records. Let’s look at an example where duplicates are all records that have duplicate First Name, Last … Read more

Categories C# Leave a comment

What is ChatGPT and Can it Replace a Programmer?

ChatGPT is an artificial intelligence(AI) platform that allows you to ask a question and gives you an answer. ChatGPT is an AI chatbot trained to effectively have dialogue. It keeps dialog with you knowing the … Read more

Categories C#, Misc Leave a comment

How to Sort a List by a property in the object?

There are two quick ways to sort List<T> based on the property of the complex C# object. For example, let’s sort this person list by DateOfBirth in ascending and descending order. Sort List Using OrderBy … Read more

Categories C# Leave a comment

Top-level statements must precede namespace and type declarations

A few days ago I wanted to create a simple C# Console Application. And faced with the error: “error cs8803: Top-level statements must precede namespace and type declarations“. My problem was that I started to … Read more

Categories C#, Visual Studio Leave a comment

Blazor Two-Way Binding Example

Using the @bind attribute Blazor allows you to bind the value of fields and properties to the HTML attributes. In this article, I will demonstrate a few examples of how to bind C# code with … Read more

Categories C# Leave a comment

Blazor Webassembly vs Blazor Server – What is Difference and What to Use?

In this article, I want to compare two Blazor Project Templates: Blazor WebAssembly and Blazor Server. I will create two identical projects but with different Blazor templates. And explain the difference. What is Blazor? Blazor … Read more

Categories C# Leave a comment

Split List into Sub lists with LINQ C#

To split the C# list into N Sub lists use the next generic helper: public static class ListExtensions { public static List<List<T>> ChunkBy<T>(this List<T> source, int chunkSize) { return source .Select((x, i) => new { … Read more

Categories C# Leave a comment

Create ASP.NET Web Core Razor Application with Authentication

In this guide, I am going to show you how to create a simple ASP.NET Web Application with authentication. I will create a special page that will be available only to authenticated users. My artifacts … Read more

Categories C# Leave a comment

Difference Between Static class and Singleton pattern?

The main difference between a Singleton and a Static Classes is that singletons can implement interfaces. Static Class Benefits and Features . So the class name just aggregates these functions. You cannot create the instance … Read more

Categories C# Leave a comment

Logger To File and Console – C# Interview Question

At the interview, you may be asked about . The question is quite interesting and allows you to check not only the syntactic constructions of the C# language, but also how do you thinking during … Read more

Categories C# Leave a comment
Older posts
Page1 Page2 Page3 Next →

Posts you may like

  • My Top 10 Books for Programmers
  • Create a Quick Copy of a Table and Place it in the Same Database
  • Console .Net 6.0 App with Entity Framework Core 6.0.6
  • How To Display Suggestion Menu with USINGS in Visual Studio?
  • How to break out of jQuery each loop?
  • How to Install Msbuild.exe 14.0 and Build Project Without Installing Visual Studio?
  • How to Set Conditional Breakpoints in Visual Studio 2022?
  • How to check String contains a Substring in JavaScript?
  • Top-level statements must precede namespace and type declarations
  • What is Difference Between Double and Decimal in C#?

Footer Menu

  • Privacy Policy
  • Contact me
  • About
  • Disclosures
  • Write Us a Guest Post
© 2023 Full Stack Developer Blog