
Can I run other exe file in C#?
Actually, if this issue is simply calling Java classes, there products
that allow this from .NET. Check out our Java/.NET interoperability
tool, JNBridgePro, at www.jnbridge.com.
Wayne
____________________________________
Wayne Citrin
JNBridge, LLC
http://www.jnbridge.com
Spanning the worlds of Java and .NET
____________________________________
Quote:
> Yi,
> If you want to run an executable, then you can use the static Start
> method on the Process class. However, if you want to call methods in a java
> class, then this will be difficult, if not impossible, as you would have in
> instantiate a JVM in your app domain and then marshal the calls from proxies
> in .NET to the JVM.
> Hope this helps.
> --
> - Nicholas Paldino [.NET MVP]
> > Hi there,
> > I want to run other exe file in C#, any one know how to call it?
> > because I have a java class already and want to use C# to run some
> function
> > and then call java class to run some function.
> > Thanks