20 lines
411 B
C#
20 lines
411 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 CreatePoint
|
|
{
|
|
public static void Run()
|
|
{
|
|
//ExStart: CreatePoint
|
|
Point point = new Point(40.7128, -74.006);
|
|
//ExEnd: CreatePoint
|
|
}
|
|
}
|
|
}
|