public EarthView.World.Spatial.VectorFileParser.FeatureClassDriver GetDriverByName(string driverName)
                    {
                        IntPtr __ptr = EarthView_World_Spatial_VectorFileParser_EVFeatureClassDriverRegister_getDriverByName_CFeatureClassDriver_EVString(this.NativeObject, driverName);

                        if (__ptr == IntPtr.Zero)
                        {
                            return(null);
                        }
                        EarthView.World.Spatial.VectorFileParser.FeatureClassDriver csObj = new EarthView.World.Spatial.VectorFileParser.FeatureClassDriver(CreatedWhenConstruct.CWC_NotToCreate);
                        csObj.BindNativeObject(__ptr, "CFeatureClassDriver");
                        csObj.Delegate = true;
                        IClassFactory csObjClassFactory = GlobalClassFactoryMap.Get(csObj.GetCppInstanceTypeName());

                        if (csObjClassFactory != null)
                        {
                            csObj.Delegate = true;
                            csObj          = csObjClassFactory.Create() as EarthView.World.Spatial.VectorFileParser.FeatureClassDriver;
                            csObj.BindNativeObject(__ptr, "CFeatureClassDriver");
                            csObj.Delegate = true;
                        }
                        return(csObj);
                    }
 public void EVRegisterDriver(EarthView.World.Spatial.VectorFileParser.FeatureClassDriver pDriver)
 {
     EarthView_World_Spatial_VectorFileParser_EVFeatureClassDriverRegister_EVRegisterDriver_void_CFeatureClassDriver(this.NativeObject, object.Equals(pDriver, null) ? IntPtr.Zero : pDriver.NativeObject);
 }