|
-
Oct 6th, 2008, 12:17 PM
#1
Thread Starter
Member
Good winsock tutorials for .net
can someone please point me in the direction of a good .net winsock tutorial for a client/server chat example?
or tell me if i should be looking at something else for making a client/server chat program..
-
Oct 6th, 2008, 12:19 PM
#2
Re: Good winsock tutorials for .net
There'll be no good winsock tutorials for .NET because you shouldnt use winsock in .NET. You have plenty of classes that you use for that now, have a look at the link in my signature for some examples.
-
Oct 6th, 2008, 12:56 PM
#3
Thread Starter
Member
Re: Good winsock tutorials for .net
ah k, thanks for example.
-
Oct 6th, 2008, 01:16 PM
#4
Thread Starter
Member
Re: Good winsock tutorials for .net
ok for some reason lines with "list()" dont work because it doesn't reconize list
such as :
Private clients As New List(Of ConnectedClient)
-
Oct 6th, 2008, 01:19 PM
#5
Re: Good winsock tutorials for .net
I take it youre using Visual Studio 02/03 then? The List(Of T) was introduced with Visual Studio 2005 along with the .NET 2.0 framework.
You'll just have to use another collection type instead, such as an ArrayList or a Hashtable.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|