TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
kannan s
NA
68
0
i got error in c#
Mar 31 2010 1:22 AM
Hi,
i got error in c# windows application.
private static void ListenForClients()
{
tcpListener.Start();
while (true)
{
try
{
// Blocks until a client has connected to the server
TcpClient client = tcpListener.AcceptTcpClient();
// Create a thread to handle communication
// with connected client
Thread clientThread = new Thread(new ParameterizedThreadStart(HandleClientComm));
clientThread.Start(client);
}
}
Error:
------
Only one usage of each socket address (protocol/network address/port) is normally permitted
Error Line:
-----------
private static void ListenForClients()
{
----->> tcpListener.Start();
Reply
Answers (
0
)
VS Query analiser and complex sqls
Exporting data from datagrid to Excel