Answers for "c# open file dialog only particual file"

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

C# Answers by Framework

Browse Popular Code Answers by Language