Category: C#

C# Compiler Error – CS1514 { expected

In this blog post, you’ll learn more about the C# Compiler Error – CS1514 and the related message description C# Compiler Error Code CS1514 C# Compiler Description for the Code :CS1514 { expected

How to run the C# program from Commandline using csc.exe ?

Problem Statement You need to use he csc.exe (C# command line compiler) to compile the Csharp program from Command prompt. Solution Use the command prompt and use the csc.exe to compile and run the program from the command prompt. Follow the below steps to compile and run the C# program from command prompt. 1. Type the program in the notepad and save it as hello.cs…

C# Compiler Error – CS0746 invalid anonymous type member declarator

In this blog post, you’ll learn more about the C# Compiler Error – CS0746 and the related message description C# Compiler Error Code CS0746 C# Compiler Description for the Code :CS0746 Invalid anonymous type member declarator. Anonymous type members must be declared with a member assignment, simple name or member access.