我正在Xamarin Forms中开发一个应用程序,需要从设备中获取地理位置数据,然后将地理位置坐标放入forecast.io URL中。我正在使用James Montemagno的Geolocator插件,并且正在使用read me建议的代码,但是我收到以下错误4次:
名称“Console”在当前上下文中不存在
下面是我的代码:
using AppName.Data;
using Xamarin.Forms;
using Plugin.Geolocator;
namespace AppName.Radar
{
public partial class RadarHome : ContentPage
{
public RadarHome()
{
var locator = CrossGeolocator.Current;
locator.DesiredAccuracy = 50;
var position = await locator.GetPositionAsync(timeout: 10000);
Console.WriteLine("Position Status: {0}", position.Timestamp);
Console.WriteLine("Position Latitude: {0}", position.Latitude);
Console.WriteLine("Position Longitude: {0}", position.Longitude);
var LatLong = position.Latitude + "," + position.Longitude;
var browser = new WebView();
browser.Source = "https://forecast.io/?mobile=1#/f/" + LatLong;
Content = browser;
}
}
}
我正在使用Visual Studio Update 3。您知道我做错了什么吗?
4条答案
按热度按时间ogsagwnx1#
由于您的代码位于具有特定配置文件的PCL中,因此
System.Console
不可用。使用
Debug.WriteLine("Text here")
代替,不要忘记加上using System.Diagnostics;
。7d7tgy0s2#
申报“使用制度”“也是有效的。
rkttyhzu3#
“控制台”功能仅在创建控制台应用程序(.NET核心)或(.Net Framework)时可用;因此,如果你创建了一个空白应用程序,它将无法工作。2但是,你可以使用Debug函数。
0ejtzxu14#
请使用**“System.Console.WriteLine(“文本”);“**显示输出