C# vs Other Programming Languages

C# (pronounced C Sharp) Programming Language seems popular these days based on market trends. If you are working with .Net and ASP technologies, you are required to be familiar with the C# accurately. Here we will describes specifically what is similar, what is different, and the motivation behind the C# preference.

Read more

All Basic SQL Queries for Database Server & Visual Studio in C#

This article will help you understand the syntax for basic queries that are most used in SQL Server. In the first part we will list down important queries that you need to understand & then in second part we will see how we can use these queries in Projects in Visual Studio using C# Programming Language.

Read more

Create Setup Installer for Projects in Visual Studio

This post is related to creating a installer of windows form or WPF application that you have created & now need to install it on other PCs with .NET framework. I hope you will understand it. This post can answer Solution of How to make a setup installer? how to Deploy C# application with .Net 4.0 , How to create a setup on install Shield to install two programs. How to Add .Net Framework 4.0 into setup project. How to run my project(windows forms) c# in a different computer.  How can I make a program work on different computers independent of .NET Framework? C# , how to Deploy C# application on any computer?

Read more

Basic Examples of C# Syntax

Basic Examples of C# Syntax

1. How to write on screen in C#. Console.WriteLine(“I have been studying C# for 4 weeks!”); This will appear on screen, and will disappear immediately. So, We are writing another statement. Console.WriteLine(“I have benn studying C# for 4 weeks!”); Console.ReadLine(); Now it will remain on screen, unless we press Enter key. Here we see that … Read more