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 ...
6
votes
1answer
116 views

How to pass a list of objects from C++ to C#?

My first question here :) I am working with an application written in C++ (a map editor for a game) that has the front end UI written in C#. Since i'm new to C# i'm trying to do as much as possible ...
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
3answers
2k views

How to unserialize PHP Serialized array/variable/class and return suitable object in C#

The goal is to unserialize a PHP serialized string and get sutable object in C# Is there any way to make this possible in C#(.Net)? To be more specific: We need to make an application which ...
2
votes
1answer
165 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 ...
2
votes
4answers
610 views

Allowing a method to lock its parent Object in Java

Is there a way in Java to get a method to lock (mutex) the object which it is in? I know this sounds confusing but basically I wan't an equivelent to this snippet of C# but in Java. lock(this) { ...
1
vote
1answer
79 views

Interacting with C# applications via PHP

Recently I have been thinking combining C# applications with a website, so that we can run multiple threads in C# and complete more tasks in the time it would take PHP would to do 1. Most of us know ...
1
vote
2answers
300 views

C#, C++ project mix: Could not load file or assembly

I have Visual Studio 2010 solution of 2 projects: c# and c++ c++ project using .net framework libraries and exposes class that is referenced from c# project. Everything compiles fine and c# project ...
1
vote
3answers
422 views

XML Based Validation Frameworks Cross Language

I'm about to embark on a new project within which we require the ability to re-use validations based on (preferably XML) on both the client and server. We would setup a service to provide the XML ...
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?