-
Project Design
I want to make a SOCKS 4/5 Proxy Tester
I wanted this to be a fully functional application, and i also want it to be a learning experience.
I was wondering how it should be laid out and created, as well as learn the most i can out of the project.
I wanted to learn about like, Delegates/Threads/Inheritance for testing multiple proxies, and the system.net.sockets class for connecting, and the bit converter class, etc..
I know alot of the things i am going to use, i just don't know i am going to make my project.
Thanks For The Help
- Joel
-
Re: Project Design
Before you can start with learning how to code the project, you'll first have to design your application.
If it's not too complex you can just do it on a piece of paper.
Just write down what you want the program to do and what data it needs to do it.
The next step is to design an interface that allows the data-input and can show progress and results.
-
Re: Project Design
If the application has to do multiple tasks, write down each task.
If neccesary you can break them down into smaller tasks.
This is the first step towards pseudo-code, which can be used later to code your application.