为什么new关键字下方会出现省略号。无法在互联网上找到任何文章。在很多情况下,我都以相同的方法使用了new关键字。除了这一点,其他一切看起来都很正常。
编辑-我正在使用Visual Studio 2017社区版。为UWP开发。该代码可以正常运行,并且不会显示为错误。按ctrl +。什么也没给。
最佳答案
我想这告诉您可以使用object initializer。因此,如果您有类似的代码
FolderPicker pickFolder = new FolderPicker();
folderPicker.SuggestedStartLocation = PickerLocationId.Desktop;
folderPicker.CommitButtonText = "Take it!";
Visual Studio建议使用此
FolderPicker pickFolder = new FolderPicker
{
SuggestedStartLocation = PickerLocationId.Desktop,
CommitButtonText = "Take it!"
};
代替。