How To call Java Jar from C# Code
First I will say how to create a jar file for given java package using command prompt You can create Manifest file using note pad by including below mentioned contents Manifest-Version: 1.0 Main-Class: Main Here manifest file is named as manifest.mf Here Main is the main class of the java project. In my example java project it only contains Main.java with below code. public class Main { ...