This question already has answers here:
Integrating Prolog with C# [closed]
(7 answers)
Closed 9 years ago.
I have to write a program with c# in visual studio. I want to call Prolog functions from C# code. Is there any way of this? Thanks so much.
You can use for example: Prolog.NET or P# or A COM Wrapper
Related
This question already has answers here:
How to secure an API written in .Net
(4 answers)
How can I obfuscate my c# code, so it can't be deobfuscated so easily? [closed]
(4 answers)
Closed 6 years ago.
im currently using ConfuserEx to obfuscate most of my programs. But now i want to sell someone a DLL, but im having a hard time obfuscating the DLL and then being able to use it on Visual Studio.
Is this a impossible thing or can it be done with pinvoke or something more advanced?
This question already has answers here:
How can I call (Iron)Python code from a C# app?
(3 answers)
Closed 9 years ago.
I have a Python module, and I'd like to be able to import parts of it like classes in C#, accessing its methods and such as .NET native as possible.
How can I accomplish this using IronPython?
Take a look at this: https://wiki.python.org/moin/IntegratingPythonWithOtherLanguages
You can assemble Python modules as dynamic-link libraries and then pinvoke them in any .NET application. You can find more details here: http://msdn.microsoft.com/en-us/library/aa719104(v=vs.71).aspx
This question already has answers here:
Execute PowerShell Script from C# with Commandline Arguments
(9 answers)
Closed 9 years ago.
I'm trying to build a C# MVC site and integrate Powershell scripts. The idea is to use the scripts I've already written. I cannot find the way to do this.
Is there someone who knows where to find a documentation?
THANK YOU VERY VERY much.
Paulo
Really simple code project solution that should help you out
http://www.codeproject.com/Articles/18229/How-to-run-PowerShell-scripts-from-C
This question already has answers here:
What static analysis tools are available for C#? [closed]
(9 answers)
Tools for static analysis for C# code [closed]
(9 answers)
Closed 9 years ago.
I've been looking for somethig like JsHint for a while now, but aimed at verifying whether a team's coding conventions are being followed in C# instead of Javascript. I've been googlinghigh and low but I can't find anything. Do you fellow overflowers know of such a tool?
I'm ultimately thinking about making one of my own, should none currently exist.
Assuming you are using Visual Studio, stylecop is one great linter tool for C#.
You're looking for Code Analysis / FxCop.
This question already has an answer here:
Closed 12 years ago.
Possible Duplicate:
Call C# dll function from Visual C++
I have a set of C# classes. Can I import these classes in a C++ project like libraries and use them in this new project?
Yes. You have to reference the dll.
You said C++/CLI, correct?