agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Examples/CSharp/Geometries/TranslateGeometryToWkt.cs

21 lines
519 B
C#

using Aspose.Gis.Geometries;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aspose.GIS.Examples.CSharp.Geometries
{
class TranslateGeometryToWkt
{
public static void Run()
{
//ExStart: TranslateGeometryToWkt
Point point = new Point(23.5732, 25.3421);
Console.WriteLine(point.AsText()); // POINT (23.5732, 25.3421)
//ExEnd: TranslateGeometryToWkt
}
}
}