client/server and namespaces

  • Thread starter Thread starter Sharon and James
  • Start date Start date
S

Sharon and James

I am trying to move from C++ to C#. My problem may be with the IDE.
I started a blank project and tried to create a simple network server.
Please advise on how to resolve the following error:

using System;

using System.Net.Sockets;

The type or namespace name 'Net' does not exist in the class or namespace
'System' (are you missing an assembly reference?)

Thank You
 
that's funny. it should work. can u use your object browser to find out what
namespaces are included with system. or, from the property pages, click on
references and find the system namespace. it should have a .net namespace.
 
Back
Top