各位大侠们,下面这段代码是java写的,如何把它们转换成C#的代码呀???
望大家踊跃参加 
* PDF转SWF工具   
 * @author tangs   
 *   
 */   
public class Converter {   
    public static int convertPDF2SWF(String sourcePath, String destPath, String fileName) throws IOException {   
        //目标路径不存在则建立目标路径   
        File dest = new File(destPath);   
        if (!dest.exists()) dest.mkdirs();   
           
        //源文件不存在则返回   
        File source = new File(sourcePath);   
        if (!source.exists()) return 0;   
           
        //调用pdf2swf命令进行转换   
        String command = "D:\\Program Files\\SWFTools\\pdf2swf.exe" + " -o \"" + destPath + "\\" + fileName + "\"  <SPAN style="COLOR: #ff0000">-s languagedir=D:\\xpdf\\xpdf-chinese-simplified</SPAN> -s flashversion=9 \"" + sourcePath + "\"";   
           
        Process pro = Runtime.getRuntime().exec(command);   
           
        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(pro.getInputStream()));   
        while (bufferedReader.readLine() != null);    
           
        try {   
            pro.waitFor();   
        } catch (InterruptedException e) {   
            // TODO Auto-generated catch block   
            e.printStackTrace();   
        }   
           
        return pro.exitValue();   
           
    }   
       
    public static void main(String []args) throws IOException {   
        String sourcePath = "c:\\test.pdf";   
        String destPath = "c:\\";   
        String fileName = "test.swf";   
        Converter.convertPDF2SWF(sourcePath, destPath, fileName);   
    }   
}