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
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 5 years ago.
Improve this question
I want to convert HTML to XAML. I found a NuGet Package called HtmlToXamlConverter but It seems it will not work with UWP apps. So How do I do it for UWP?
Take a look at the HtmlBlock control in the Windows App Studio Nuget package. The HtmlBlock renders Html formatted content using a native Xaml representation.
https://github.com/wasteam/waslibs#html-block
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 8 years ago.
Improve this question
I am looking for a .net C# library that can do translations. I tried googles one but they charge money now for it.
I am looking for something that can preferably auto detect languages, translate blocks of text or download the entire page and convert it.
This all has to of course be done through code.
Thanks
Have you tried using bing?
http://www.microsofttranslator.com/
There is a translator .net library on codeplex that uses bing: http://translateit.codeplex.com/
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
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 am looking for something that will iterate over our model and extract each objects properties in order to build a documentation wiki. Is there a tool out there which will do such a thing?
Basically I do not want to have to extract all of our documentation out of the projects by hand.
sandcastle builds webpages, but they aren't editable as a wiki. Is that the kind of thing you are looking for?