如果有人在Windows窗体上输入或执行操作,我怎么能在控制台应用程序上写东西呢?我有这个管理控制台应用程序,我想通过两者传递代码。
我有一个用户名字符串,所以只是假装选中的=用户名
下载一些代码以帮助理解
string line = Console.ReadLine();
if (line == "messageall")
{
//This will send a message to all users on windows form
}
if (line == "messageuser")
{
//This will send a message to a certain user - messageall usernamehere
string username = Args[1].ToLower();
}