我从Windows窗体应用程序调用控制台应用程序。我想从控制台应用程序中获取一个字符串列表。 这是我的简化代码......
[STAThread]
static List<string> Main(string[] args)
{
List<string> returnValues = new List<string>();
returnValues.Add("str_1");
returnValues.Add("str_2");
returnValues.Add("str_3");
return returnValues;
}
答案 0 :(得分:5)
你不能只返回一个列表,你必须以另一端可以接收它的方式对其进行序列化。
一种选择是将列表序列化为JSON并通过Console.Out
流发送。然后,在另一端,从过程中读取&#39;输出流并反序列化。
答案 1 :(得分:4)
通过这种方式你不能。 Main只能返回void或int。 但您可以将列表发送到标准输出并在另一个应用程序中读取它。
在控制台应用中添加以下内容:
Console.WriteLine(JsonConvert.SerializeObject(returnValues));
在来电应用中:
Process yourApp= new Process();
yourApp.StartInfo.FileName = "exe file";
yourApp.StartInfo.Arguments = "params";
yourApp.StartInfo.UseShellExecute = false;
yourApp.StartInfo.RedirectStandardOutput = true;
yourApp.Start();
string output = yourApp.StandardOutput.ReadToEnd();
List<string> list = JsonConvert.DeserializeObject<List<string>>(output);
yourApp.WaitForExit();
答案 2 :(得分:2)
不,您不能返回字符串或字符串列表。 Main方法只能返回void
或int
请参阅MSDN
答案 3 :(得分:0)
Main方法的返回类型为void或int。
答案 4 :(得分:0)
主要方法不适用于此。但是如果你想在这里打印你的列表是代码:
public void showList(List<String> list)
{
foreach (string s in list)
{
Console.WriteLine(s);
}
}