System.Net.dll System.IO.dll not found

  • Thread starter Thread starter Edel
  • Start date Start date
E

Edel

I have installed SDK 1.1 and the redist
then I run : sdkvars.bat to set up the the environment.

I copy a little program just try , this program is trying
to connect to Yahoo mail.

when I compile using

csc /r:System.Net.dll /r:System.IO.dll pop.cs
( according to the author's instruction)

I got System.Net.dll,System.IO.dll not found

Any one? any idea? is there more I need to download or to
setup?

below is the link to the artical and the sample code

http://www.c-sharpcorner.com/internet/Pop3Access.asp


thanks a lot

Edel




..
 
System.net and System.IO are part of System.dll, and so you don't need
to (and can't) link up System.Net.Dll/System.IO.Dll
 
that is what I read that System.Net, IO are part of
System.dll, I also compiled without linking to these
libraries, but I got compile errors complaining:
TCPClient can not be found etc.

thanks a lot for your reply.

Edel
 
Back
Top