Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Online CodeEditor with Intelligence (C#)

Tags:

javascript

c#

ide

A Google search results in CodeMirrow. I could not find a c# demo and not sure if it support intelligence (or if thats even possible).

Does anyone know any (browser code editor) projects that support Intelligence/auto-completion. Im looking for a project that i can use freely on my own site.

like image 957
Poul K. Sørensen Avatar asked Nov 22 '12 20:11

Poul K. Sørensen


People also ask

What code editor should I use for C?

CodeLite is an open-source tool for writing programs in C. It enables you to restructure your existing C code. This Integrated development environment can highlight the syntax you have written. You can use this application for free.

Can I write C code online?

Online C Compiler (GNU GCC v7.1.1) helps you to Edit, Run and Share your C Code directly from your browser. This development environment provides you version GNU GCC v7.1.1.

Is VSCode good for C?

With the addition of extensions, VSCode is a great tool for quickly accessing and editing C++ code, whether you are a beginner or an advanced developer. With the addition of an open source compiler that is native to your platform, you can use VSCode as a complete tool for building your C++ solutions.

Does C have an IDE?

There are numerous C and C++ IDEs available for experienced developers as well as for newbie programmers to do programming without any hassle, and you can opt for any one of them as per your requirements.


2 Answers

What about ".NET jsFiddle" ???

http://dotnetfiddle.net

like image 124
Wulfbane Avatar answered Sep 29 '22 05:09

Wulfbane


I think you should go with CodeMirror, which is the only that I know that has Auto Complete.

You can check a demo here: http://codemirror.net/demo/complete.html.

And it's open source and actively developed, so, you can always contribute with improvements: https://github.com/marijnh/CodeMirror.

like image 35
fegemo Avatar answered Sep 29 '22 03:09

fegemo