using GoogleMaps.LocationServices;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace TestGeolocations
static void Main(string[] args)
XNamespace ns = "urn:schemas-microsoft-com:office:excel";
var xdoc = XDocument.Load(@"c:\users\gsiradze\documents\visual studio 2013\Projects\TestGeolocations\TestGeolocations\loc.xml");
IEnumerable<string> ss = xdoc.Descendants(ns + "Crn").Select(x => x.Elements(ns + "Text").Reverse().Skip(1).Take(1).DefaultIfEmpty()).SelectMany(x => x).Select(x => (string)x);
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"c:\users\gsiradze\documents\visual studio 2013\Projects\TestGeolocations\TestGeolocations\texts.txt", true))
foreach (string line in File.ReadLines(@"C:\Users\gsiradze\documents\visual studio 2013\Projects\TestGeolocations\TestGeolocations\texts.txt"))
var locationService = new GoogleLocationService();
var point = locationService.GetLatLongFromAddress(line);
var latitude = point.Latitude;
var longitude = point.Longitude;
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\Users\gsiradze\documents\visual studio 2013\Projects\TestGeolocations\TestGeolocations\wrongAddr.txt", true))