我正在使用monkey.robotics
插件处理xamarin.forms
应用。在我的应用程序中,我想将属性IDevice
显示为字符串或int。
我目前有以下一行:
var data = new entry{ Longitude = await GetLongitude(), Latitude = await GetLatitude(), Percentage = bpm, Device = e.Device, };
但它会抛出Cannot implicitly convert type 'Robotics.Mobile.Core.Bluetooth.LE.IDevice to int'
错误消息。我理解这一点,但不知道解决方法。
我该怎么做?