我正在使用Visual Studio Community 2015,我正在用c ++编写代码。我的一些代码是浅灰色的,我不明白为什么。我的代码中还有一些其他奇怪的颜色,我想知道它的含义。我附上图片来表明我的意思。
public partial class ItemsPage : ContentPage
{
public ItemsPage()
{
InitializeComponent();
Vm = new ItemsViewModel();
BindingContext = Vm;
}
protected override async void OnAppearing()
{
var playlist = await Vm.GetPlaylist();
// Do something cool with the string, maybe some data binding.
}
// Public for data binding.
public ItemsViewModel Vm { get; private set; }
}
关键字为灰色
“新”和“我”是灰色但不是“nt”