有没有什么方法可以在C#.net中使用perl包

编程入门 行业动态 更新时间:2024-10-14 00:31:34
本文介绍了有没有什么方法可以在C#中使用perl包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

大家好, 我很想知道是否有任何方法可以在c#中使用Perl软件包。 期待听到您的想法。 提前致谢! 热烈的问候, Himanshu

Hi Everyone, I am just curious to know is there any method through which we can use "Perl packages" in c#. Look forward to hear your thoughts. Thanks in advance! Warm regards, Himanshu

推荐答案

您实际上可以将perl程序作为单独的进程启动,例如 You can actually launch the perl program as a separate process for e.g. Process myProcess = new Process(); ProcessStartInfo myProcessStartInfo = new ProcessStartInfo("perl.exe"); myProcessStartInfo.Arguments = "script.pl"; myProcessStartInfo.UseShellExecute = false; myProcessStartInfo.RedirectStandardOutput = true; myProcess.StartInfo = myProcessStartInfo;

更多推荐

有没有什么方法可以在C#.net中使用perl包

本文发布于:2023-11-22 01:07:52,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1615375.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:有没有什么   方法   perl   net

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!