Changes between Version 3 and Version 4 of GdalOgrInCsharp


Ignore:
Timestamp:
Apr 5, 2007, 3:25:54 PM (17 years ago)
Author:
tamas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GdalOgrInCsharp

    v3 v4  
    33
    44The GDAL project 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 wiki topic.  The CSharp bindings are also usable from other .NET languages, such as VB .Net.
     5
    56The CSharp interface has been build upon a common ground as the other SWIG generated wrappes (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.
     7
    68The 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.
    79