本文介绍了如何使用C#确定C#应用程序用户的地理位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
确定c#应用程序的用户地理位置
Determine a user geolocation of a c# app
推荐答案
var watcher = new GeoCoordinateWatcher();
watcher.TryStart(false,TimeSpan.FromMilliseconds(5000));
var coord = watcher.Position.Location;
您只需要确保已启用计算机传感器即可.
瓦莱里.
You just need to make sure your computer sensors are enabled.
Valery.
这篇关于如何使用C#确定C#应用程序用户的地理位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!