Feeling stupid!. What to do with source code?

  • Thread starter Thread starter Tony!
  • Start date Start date
T

Tony!

Ok.. I'm retarded.. I admit it.. Can someone push me in the right
direction?

In VB, (6), To help me learn how stuff was done, I got source code
from various places and tried them out.

This was pretty easy.. Click the vbp file and it's all there
(usually).

But it seems to be nothing that easy for C# in Visual Studio net.

Got the source for an FTP client from
http://www.enterprisedt.com/downloads.html

It extracts to multiple .cs files and a .dll file..

Not sure how I would get all this info one app that will run and I
could see how it does it all in C#.

I've even tried simple single .cs file srcs like Hello world..

When I double clicked on that one, It came up, but the debug play
button was disabled (and ctrl-F5 did nothing)

But when I created a new console app and pasted all the test from the
..cs file into it, it did the ole' displaying of Hello World in a
console bit..

uhm.. Any helpful advice / urls?

Thanks :) :)

Tony!
 
Hi Tony,

Doubleclick on a .csproj or a .sln file. If there are none create a new
empty project and add all the .cs files to it, as well as a reference to
the .dll

Happy coding!
Morten
 
Back
Top