如何在C#中使用过程调用方法

时间:2019-06-28 12:06:28

标签: c# .net c#-4.0 c#-3.0

我有2个控制台应用程序

  1. 服务器
  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";
            }
        }

0 个答案:

没有答案