backend spellchecking library c# [closed] - c#

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
In my project I need to check a bunch of text for spelling mistakes. I get the text over a webservice and have no GUI component from which I could use Spellchecking functionality.
Is there a standard spell checking function that I can use?
Is there a commercial or better open source library that can be used offline?

GNU Aspell is a stable, open-source spelling checker that includes dictionaries for many languages. The library has a C API, which you could presumably use through P/Invoke.
There is a NuGet GNU Aspell package, which claims to provide a .NET wrapper.

Related

Script engine for C# application [closed]

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 need to include in an application I am developing, a feature to allow easy customization of a module. In fact it will be nice to use some kind of scripting to modify the behaviour of a calculation process that the application provides. I am developing the application in C# and Roslyn... but how can I pass a context (parameters and values) to a Roslyn script and receive a response back?
If C# is appropriate language for your case Roslyn is a good choice.
Take a look at Microsoft.CodeAnalysis.CSharp.Scripting NuGet package. It allows to execute pieces of C# code stored in plain strings.
For example:
await CSharpScript.EvaluateAsync("Console.WriteLine(\"Hello world!\")");

Analog of NLua that helps to run pascal scripts from C# [closed]

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
Do you know any libraries that can help to run pascal scripts from C#? Yes, I know that's an awful idea, but...i have no choose...
P.S. Sorry for my ugly English!
Compile the pascal code to a DLL with a compiler like Free Pascal, and interface it using C# interop.
Note that COM compatible SEH is default for 64-bit DLLs, but needs recompilation of FPC for 32-bits DLLs (-dtest_win32_seh)

Is there a .NET text diff library from Microsoft? [closed]

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 would like to use a C# .NET diff/comparison library for text files (C++ to be more precise, but it should not matter).
I have found a lot of libraries in the topic but what I need is a something that is part of the .NET library or it comes from Microsoft. The reason of this restriction is that I do not have to go over our company's long open source tool approval process.
Does C# .NET has such feature?
An example for the usage: I have two slightly different .cpp files. I have to create one .cpp file which will have a #ifdef according to the differences of the two files and we can use one file at two places controlled by a predecessor definition.
There is no such built in functionality in any Microsoft .Net library.

Siemens CSTA with C# [closed]

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 need a quickstart for the connect ... maybe someone with experience on C# and how to make CSTA Link ? I just find one example but in Perl on Perl CSTA Example, but I still don't know hot to do on C#.
Thanks a lot!
Best Regards.
Siemens exposes CSTA API's. You can use those. There is a CSTADLL which is a collection of software for the Microsoft .NET platform that allows you to perform ACSE and CSTA operations for any of the three CSTA phases.
There are two namespaces you should have a look at: Com.Objsys.Csta.Common and Com.Objsys.Csta.Devices - depending on what exactly you are about to do.

Good Tiff library for .NET [closed]

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 know libtiff for C, but haven't found a port for .NET. Does such a port exist?
My company recently released a free and open-source(New BSD license) version of LibTiff written using only managed C# (license permits commercial use and distribution).
https://bitmiracle.com/libtiff/
What about using the built in .NET class? See "How to: Encode and Decode a TIFF Image" on MSDN.

Categories