-3
此代碼有一個錯誤:method must have a return type
。我該如何解決它?C#代理窗體窗體應用程序
public Server()
{
}
誤差以上
服務器字public void createListener()
{
TcpListener tcpListener = null;
IPAddress ipAddress = Dns.GetHostEntry("localhost").AddressList[0];
try
{
tcpListener = new TcpListener(ipAddress, 13);
tcpListener.Start();
output = "Waiting for a connection...";
}
catch (Exception e)
{
output = "Error: " + e.ToString();
MessageBox.Show(output);
}
while (true)
{
Thread.Sleep(10);
TcpClient tcpClient = tcpListener.AcceptTcpClient();
byte[] bytes = new byte[256];
NetworkStream stream = tcpClient.GetStream();
stream.Read(bytes, 0, bytes.Length);
SocketHelper helper = new SocketHelper();
helper.processMsg(tcpClient, stream, bytes);
}
}
我應該在哪裏增加嗎?
static void Main()
{
Application.Run(new Server());
}
'公共類服務器 { }' 需要說的是什麼樣的對象的'Server'是 此刻,你的代碼是假設服務器是一種方法和上應該有一個返回類型。既然你在你的Main中調用'new Server()'並且得到錯誤請求返回類型,我假設你打算創建一個類對象,並且你沒有在你的類文件頂部聲明這個類 '公共服務器(){ } '會的工作,如果你正在使用它作爲一個構造函數,但應該是: '公共類服務器 { 公共服務器(){ } // 其他方法 }' – Draken
如果您從此[鏈接](https://msdn.microsoft.com/zh-cn/library/bb397809(v = vs.90).aspx)複製代碼,則必須將代碼單獨放入類。創建一個新類,將其命名爲Server,然後將代碼複製到其中。 – Han
我創建了3個類 –