Does the System Namespace has something like system.path I need print out the current cs files path.. because for some reason I'm trying to load some images in a program that I'm creating.. but for some reason.. It only works when I add in the full path to it.

Getting applications Paths
pauley
interesting, it should. It returns a string of the path/location of where your application is running from
MessageBox.Show(Application.StartupPath);
(or Console.Write)
PremZ
itsRashmi
Cygon4
Rachel J
tarzan123_us
Simpson474
What path are you really after It's not very clear from your question.
You have:
System.Environment.CurrentDirectory for the current directory
System.Environment.GetFolderPath(SpecialFolder specialFolder) for various system folders like My Documents, Application Data etc.
System.Windows.Forms.Application.StartupPath for the path where the app's executable resides in
Lilach