Changes between Version 21 and Version 22 of GdalOgrInCsharp


Ignore:
Timestamp:
Nov 17, 2017, 12:39:47 AM (6 years ago)
Author:
bradh
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GdalOgrInCsharp

    v21 v22  
    44The GDAL project (primarily Tamas Szekeres) maintains SWIG generated CSharp bindings for GDAL and OGR.  Generally speaking the classes and methods mostly match those of the GDAL and OGR C++ classes, but there is currently no CSharp specific documentation beyond this site.  The CSharp bindings are also usable from other .NET languages, such as VB .Net.
    55
    6 The CSharp interface has been build upon a common ground as the other SWIG generated wrappers (like Perl, Python, Java, PHP and Ruby). In this regard the class names and class member names along with the method signatures are fairly predestinated and might not follow the conventional .NET naming guidelines. However, one can easily identify the counterpars of the members in the GDAL/OGR API documentation.
     6The CSharp interface has been build upon a common ground as the other SWIG generated wrappers (like Perl, Python, Java, PHP and Ruby). In this regard the class names and class member names along with the method signatures are driven by the GDAL+SWIG conventions, and might not follow the conventional .NET naming guidelines. However, one can easily identify the matching members in the GDAL/OGR API documentation.
    77
    88The GDAL/OGR CSharp classes use the .NET ''P/Invoke'' mechanism for the communication between the managed and unmanaged code. Every class implements the ''IDisposable'' interface to control the finalization of the underlying unmanaged memory referenced by every the wrapper class.
     
    2222
    2323 * A variety of example programs in CSharp are available at the [http://trac.osgeo.org/gdal/browser/trunk/gdal/swig/csharp/apps /swig/csharp/apps] folder of the GDAL project tree.
    24  * This projetct make images tiles (Superoverlay method) for Google Earth[http://www.codeplex.com/gdal2tilescsharp GdalToTiles C#]
     24 * This project make images tiles (Superoverlay method) for Google Earth[http://www.codeplex.com/gdal2tilescsharp GdalToTiles C#]
    2525
    2626== FWTools ==