i'm writing an app that needs a calculation support (Fun project). However, is there a way to enter input data to the interactive console in BC from C#, and then read the data from the console with C#? I have tried to use dllexport in the c source, but the code is confusing me.

有帮助吗?

解决方案

The usual way to interact with prewritten console applications in c# is to use Process.Start and then redirect StandardInput and StandardOutput.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top