当有人进入或在 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();
}