Horje
c# file directory selection Code Example
c# file directory selection
CommonOpenFileDialog dialog = new CommonOpenFileDialog();
dialog.InitialDirectory = "C:\\Users";
dialog.IsFolderPicker = true;
if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
{
    MessageBox.Show("You selected: " + dialog.FileName);
}




Csharp

Related
c# declare an int list Code Example c# declare an int list Code Example
how to do a messagebox in c# Code Example how to do a messagebox in c# Code Example
find longest string in a list c# Code Example find longest string in a list c# Code Example
scenemanager.loadscene Code Example scenemanager.loadscene Code Example
unity get scrollbar value Code Example unity get scrollbar value Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9