我有2个控制台应用程序
我正在服务器应用程序中创建客户端应用程序的过程对象。
我想使用该对象来调用客户端应用程序的GetData
方法。
服务器应用程序的代码:
class Program
{
static void Main()
{
Process pipeClient = new Process();
pipeClient.StartInfo.FileName = "client.exe";
if(check if exe is already running)
{
pipeClient.Start();
}
#call GetData method from client pipeClient process
}
}
客户端应用程序的代码:
class Program
{
static void Main()
{
}
public string GetData(string name)
{
return "Hello";
}
}