Skip to content

Full Stack Developer Blog

Just The Programming Blog

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

Visual Studio

How to Change Visual Studio Theme? Change to Dark Theme

The Visual Studio allows changing themes. The default theme is “Blue”, let’s switch it to the “Dark” theme. To change the theme in Visual Studio do the next steps: 1. Go to the “Tools” menu, … Read more

Categories Visual Studio Leave a comment

Generate C# Class From JSON in Visual Studio

Using Visual Studio 2012 or newer you can just “Special Paste” your JSON as C# classes. Steps to Generate C# Class from JSON Copy your JSON content to the clipboard In file the editor, select … Read more

Categories Visual Studio Leave a comment

How To Display Suggestion Menu with USINGS in Visual Studio?

The keyboard-shortcut that shows the suggestion menu with the necessary using statement is Ctrl – . or Alt – Shift – F10. The using statement appends to the top of the file after selection. Here … Read more

Categories Visual Studio 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

How to Comment Code in Visual Studio Code?

Visual Studio Code has the possibility to comment and uncomment the single line code and multiple lines. I want to share two shortcuts to do it in the Windows OS. Both hotkeys work for single … Read more

Categories Visual Studio Leave a comment

How To Auto Format Code in Visual Studio 2022?

Formatting code allows you to improve the readability of the code, and as a result editing. The Visual Studio 2022 allows you to format both selected sections of code and the entire document. Let’s show … Read more

Categories Visual Studio Leave a comment

How to Set Conditional Breakpoints in Visual Studio 2022?

When debugging a program, a situation often arises where it is necessary to trigger a breakpoint only if the variable contains a certain value. Very often this situation arises in the loop. Let’s look at … Read more

Categories Visual Studio Leave a comment

How To Generate C# class from XML?

Using Visual Studio 2012 or newer you can just ‘Special Paste’ your XML file as C# classes. Three Simple Steps Copy your XML file’s content to the clipboard In the editor, select the place where … Read more

Categories C#, Visual Studio Leave a comment

How to Install Msbuild.exe 14.0 and Build Project Without Installing Visual Studio?

Before I share how to install and use MS BUILD 14 without installing Visual Studio(VS) let me describe the reason why I needed it. The build server uses ms and on my local machine VS … Read more

Categories Visual Studio Leave a comment

Posts you may like

  • How to Find out Git Current Version?
  • Concatenate Multiple SQL Rows Into Single String
  • Logger To File and Console – C# Interview Question
  • Blazor Two-Way Binding Example
  • 6 Improvements For LINQ in .NET 6
  • What is Difference Between Double and Decimal in C#?
  • What is .NET Standard and When to Use It?
  • How to Connect SQL Management Studio with Local SQL Server Express?
  • 12 Important Things About Programming – Tips for Beginners
  • How to Comment Code in Visual Studio Code?

Footer Menu

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