Quantcast
Viewing all articles
Browse latest Browse all 2341

New Post: Try to Open .shp

Sorry for repost, my mistake(
namespace shptomif
{
    class Program
    {
        static void Main(string[] args)
        {
            
            Shapefile shp = new Shapefile();
            if (!shp.Open(@"..\..\Data\Austinstreets.shp", null))
                Console.WriteLine(shp.ErrorMsg[shp.LastErrorCode]);
            Console.ReadKey();
        }
    }
}

Viewing all articles
Browse latest Browse all 2341

Trending Articles