File Navigation in C#

I assume you mean how do you get the file name that was selected by using the openfiledialog component?
C#:
//to use/show the dialog box
OpenFileDialog.ShowDialog();
//to get the filename...
string fileName = OpenFileDialog.FileName;

Cheers
 
Back
Top