Tagged Questions

19
votes
3answers
3k views

Instantiating a python class in C#

I've written a class in python that I want to wrap into a .net assembly via IronPython and instantiate in a C# application. I've migrated the class to IronPython, created a library assembly and ...
5
votes
3answers
334 views

Interacting with java code from C#

We've written a Java program which we are looking to use and interact with from C#. What are our options? Optimally it would be possible to compile the Java application as a library (.DLL) that we ...
4
votes
1answer
53 views

How to call a Java programme from .Net?

I have a little java programme, that responsible for sending message via mobile phone, and which is a native programme on the PC. But we won't convert it to .net, but it can be execute via dos cmd ...
2
votes
1answer
162 views

How to convert unserialize php object in .NET C#

I recently got a project which require communication between php and .Net websites. The developer form php didnt provide much doc about their code, only a client site library and a small piece of ...
1
vote
1answer
63 views

protobuf-net or protocol buffer services from c# to python and other lang

I have been looking at protobuf-net recently and protocol buffers and so far it seems quite impressive. What i am wondering about is the service side of things. If i have understood the google ...
1
vote
3answers
210 views

Importing C methods/classes into a C# project

I have some c headers, and a c lib that I'd like to import and use in a c# project. How can I do this?