Answers for "open file dialog c# on button click"

C#
4

c# open file dialog

OpenFileDialog dialog = new OpenFileDialog();
if (DialogResult.OK == dialog.ShowDialog()) 
{
    string path = dialog.FileName;
}
Posted by: Guest on July-16-2020

Code answers related to "open file dialog c# on button click"

C# Answers by Framework

Browse Popular Code Answers by Language