首先,我是一名C ++程序员,现在正在学习如何同时使用Visual Studio和C#。
https://components.xamarin.com/gettingstarted/estimotesdkandroid
这是我即将推出的android项目,我正在使用C#来实现这个,但示例代码给了我一些问题。
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.notify_demo);
_region = this.GetBeaconAndRegion().Item2;
_beaconManager = new BeaconManager(this);
}
我的Item2在VS中带有红色下划线,错误是
"object does not contain a definition for 'Item2' and no extension method 'Item2' accepting a first argument of type 'object' could be found(are you missing a using directive or an assembly reference?)"
尝试谷歌错误但无法理解社区提供的答案。
据我所知,这不是我忘记在程序集引用和使用指令中添加内容的一个粗心错误。大概...