Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Editor and Compiler Preference

For those of you that are quick to answer some questions, with code snippets. I must say that I have been beaten to the punch a few times because loading up Visual Studio, File -> New Project... does take some time. Does anyone out there - particularly for those that are contributing answers here - have a good quick editor on Windows that allows you to enter some c# code, compile-it? Basically - what's the fastest way of writing sample code for you?

like image 841
cbkadel Avatar asked Feb 24 '10 03:02

cbkadel


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C in C?

Full form of C is “COMPILE”.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.

Why C is called structured programming language?

C is called structured programming language because a program in c language can be divided into small logical functional modules or structures with the help of function procedure.


2 Answers

Yes.

LINQPad.

Typing a piece of code into LINQPad is much faster than creating a Visual Studio project, and its object graph is more usable than Visual Studio's Watch window.

I find LINQPad extremely useful for answering on StackOverflow.

like image 166
SLaks Avatar answered Sep 19 '22 15:09

SLaks


Enough familiarity with the language concepts to write snippets without the help of Visual Studio -- right in the markdown editor. And you get the 5-minute grace period for free edits when you realize you made a mistake!

like image 27
Chris Farmer Avatar answered Sep 18 '22 15:09

Chris Farmer