我對 C# 還很陌生,所以如果我的標(biāo)題沒有使用正確的術(shù)語,我深表歉意。這個問題只是我的好奇心,但是否有可能改變這段代碼var folderPicker = new FolderPicker();folderPicker.SuggestedStartLocation = PickerLocationId.ComputerFolder;folderPicker.FileTypeFilter.Add("*");變成這樣的東西var folderPicker = new FolderPicker() { SuggestedStartLocation = PickerLocationId.Desktop; FileTypeFilter.Add("*");}我嘗試過,但 VS19 不喜歡它。我只是不確定我的語法是否錯誤或者是否不可能。感謝您提供的任何幫助。
使用對象初始化器實例化類
慕的地8271018
2023-08-20 10:20:22