c#—OpenFileDialog(開啟檔案對話方塊)和new關鍵字的用法

qq_43169363發表於2020-09-25
         OpenFileDialog ofd = new OpenFileDialog();
        ofd.Title = "請選擇圖片";
        ofd.InitialDirectory = System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
        ofd.Filter = "(*.jpg)|*.jpg|(*.gif)|*.gif|(*.bmp)|*.bmp|(*.png)|*.png";
        new關鍵字的用法
     1.new 運算子 用於建立物件和呼叫建構函式。
     2.new 修飾符 用於隱藏基類成員的繼承成員。 
     3.new 約束 用於在泛型宣告中約束可能用作型別引數的引數的型別。

相關文章