Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I builded a mechanizm which is responsible for creating scripts based on C# language.
To do that I used TextEdit where I paste C# code and CodeDom mechanizm to generate dynamic type on server side.
Everything is working great.
I want to replace this TextEdit. I need component who will give me an oportunity to write C# code with right formatting (as in Visual Studio Text Editor) and would be great if this component will be validate it's content (C# syntax).
Has anyone can help me ?
Have a look at: Scintilla.NET
check this:
http://www.codeproject.com/KB/edit/SyntaxHighlighting.aspx
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to know Is there any compiler-compiler library that is written in C# or Not ?
I know Antlr & JavaCC but these library wrote in Java
Is there any library like antlr but in C# (or ported in C#) and open source or not ?
Can anybody introduce them ?
There is Irony. I've never used it myself though.
The C# compiler is itself written in C#, and with Roslyn, this has been made open source.
https://github.com/dotnet/roslyn
There is also a C# port of JavaCC, however, it's no longer maintained. The author switched to Irony instead. If you're just looking for code for examples, it would do that.
https://github.com/deveel/csharpcc
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have an application which could easily be controlled by a bot over network or even on the local machine(which simuates keyboard and mouse e.g.).
I want to avoid this using a captcha. The source has to work without internet / has to be generated during runtime on the computer itself.
Is there any open-source project for this or can someone give me a code example or a link ?
I've found an article "Simple CAPTCHA, Create your own in C#" by Raymund Macaalay. It is for an ASP.NET app, but he generates a normal C# bitmap image using different random fonts in STEP2, so this should also work in your WinForms app.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a C# tool or Visual Studio Extension to visualize the typed api of all the library I use (because there is not type in the msdn doc, and some library have no apidoc).
What do you mean by typed api ? You can use the Object browser in Visual Studio if you want to look into the signatures of the dll you are referencing.
Or if you want to generate documentation for a library you can use tools like GhostDoc
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any intellisense library for c# available to download?
I'd like to have a multi-line textbox in a winforms project which highlights c# keywords and (preferably) pops up a panel for listing possible keywords Just like VS IDE.
Check the C Sharp project on Code Project for Syntax Highlighting.
There is also a similar question asked on stack overflow: A textbox/richtextbox that has syntax highlighting? [C#] .
Other open source projects include:
dotNetFireball
Scintilla.NET
Editor.NET
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
G'day.
I just want to write a simple application about XML and ListView Control with C#.
Any good tutorial? thank you!
Simple? With XML? And a ListView? Good luck.
However, this link shows how to start using an ObjectListView, which is a wrapper around a standard .NET WinForms ListView. In the demo of ObjectListView, the "Data" tab show how to load an XML file into a DataSet, and then show that DataSet in a DataListView (which is a data bindable version of an ObjectListView).
That should be a start, at least.