我的VB程序中有11个错误。所有错误看起来都相似: X在命名空间Y
中不明确Error line: Imports System.Net.Sockets Imports System.Text Module Module1 Sub Main()
Dim serverSocket As New TcpListener(System.Net.IPAddress.Parse("192.168.1.100"), 8888)
我该如何解决这个问题?
答案 0 :(得分:0)
我怀疑您为定义System.Net.Sockets
的程序集添加了两个不同的引用。 (对于.NET 2.0和.NET 4.0,可能是System.dll
,但这既不在这里也不在那里。)
我这样说是因为there's nothing wrong with your code:
Imports System.Net.Sockets
Imports System.Text
Module Module1
Sub Main()
Dim serverSocket As New TcpListener(System.Net.IPAddress.Parse("192.168.1.100"), 8888)
End Sub
End Module
result: success time: 0.16s memory: 25064 kB returned value: 0