Writing code editor - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-01T08:00:33Zhttp://stackoverflow.com/feeds/question/109288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109288/writing-code-editor0Writing code editor [closed]saner2008-09-20T20:33:54Z2008-09-20T20:48:00Z
<p>I'd like to write code editor in C#. I've read Design Patterns and it seems that Composite, Flyweight and Decorator patterns might be useful.</p>
<p>I've also checked source code of Sharp Develop, however the code documentation is very weak. That is the reason I don't want to read source code of open source projects.</p>
<p>Could you recommend me any design patterns, articles or books about writing code editor?</p>
http://stackoverflow.com/questions/109288/writing-code-editor/109315#1093153Answer by PhiLho for Writing code editorPhiLho2008-09-20T20:44:49Z2008-09-20T20:44:49Z<p>In the <a href="http://scintilla.sourceforge.net/ScintillaRelated.html" rel="nofollow" title="Scintilla and SciTE Related Sites">Scintilla and SciTE Related Sites</a> page, you can find other editing components, and a Document section pointing to some resources on design of such component.
Note that Scintilla has a .Net encapsulation (ScintillaNet).</p>
http://stackoverflow.com/questions/109288/writing-code-editor/109324#1093240Answer by Kris for Writing code editorKris2008-09-20T20:46:59Z2008-09-20T20:46:59Z<p>There's a really good open source C#/VB/XML editor that's been integrated into a project called <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a>. They've also published a <a href="http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx" rel="nofollow">book</a> about their project, Probably one of the most complete writeups about a large-scale winform app ever written.</p>
http://stackoverflow.com/questions/109288/writing-code-editor/109326#1093263Answer by Travis B. Hartwell for Writing code editorTravis B. Hartwell2008-09-20T20:48:00Z2008-09-20T20:48:00Z<p>Here's a book on the implementation of Sharp Develop:
<a href="http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx" rel="nofollow">Dissecting a C# Application: Inside Sharp Develop</a></p>
<p>There is a link for a free PDF download of the book.</p>
<p>Also, there is this question of Programming Reddit, that has some of the links I would have shared.:
<a href="http://www.reddit.com/r/programming/comments/6fkki/ask_proggit_books_articles_papers_etc_on_text/" rel="nofollow">Ask proggit: books, articles, papers etc. on text editor implementation?</a></p>