Call ShowDialog method to show the dialog

image_pdfimage_print
   
 



using System;
using System.Windows.Forms;

class MainClass {
    static void Main(string[] args) {
        SaveFileDialog dlg = new SaveFileDialog();

        if (dlg.ShowDialog() == DialogResult.OK) {
            Console.WriteLine(dlg.FileName);
        }
    }
}