进程交互(c#和纯c++)

发布于 2024-11-17 08:38:38 字数 169 浏览 3 评论 0原文

我有用于数据处理的 C# 调度程序和快速 C++ 程序。我需要从 C# 调度程序将数据(初始化)传递给 C++ 程序。 传递数据是原始类型:配置字符串、小数。 我不想使用文件或命令行参数进行交互。我认为这应该是更聪明的方式。现在互动是单向的,但我认为未来可能是双向的。 您能为我的任务提供适当的建议吗?

谢谢

I've got c# dispatcher and fast c++ program for data processing.I need pass data(initializtion) to c++ program from c# dispatcher.
Passing data is primitive type: config strings, decimals.
I don't want use file or command line arguments for interaction. I think it should be smarter way. Now interaction is one-way, but I think at the future it could be two way.
Can you advice me appropriate way for my task?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬花如无物 2024-11-24 08:38:38

您可以使用 C++/CLI DLL 作为中间层。

you could make use of C++/CLI DLL as the middle layer.

定格我的天空 2024-11-24 08:38:38

您可以使用环境变量,这是将选项和数据传递给子进程的常用方法。

如果您有 C++ 源代码,我喜欢 @ghimireniraj 的想法,即使用 C++/CLI 编译器将 C++ 代码制作成 .NET 程序集,那么您实际上不需要启动单独的程序,并且可以将数据传递为函数参数。

You could use environment variables, that's a common method for passing options and data to a child process.

If you have the C++ source code, I like @ghimireniraj's idea of making the C++ code into a .NET assembly using the C++/CLI compiler, then you don't actually need to start a separate program, and you can pass your data as function arguments.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文