///<summary>
                    ///拷贝构造函数
                    ///</summary>
                    ///<param name="other">索引对象</param>
                    ///<returns></returns>
                    public SqlIndex(EarthView.World.Core.Database.SqlIndex other) : base(CreatedWhenConstruct.CWC_NotToCreate)
                    {
                        NameValuePairList list       = new NameValuePairList();
                        BasePtr           valueother = new BasePtr(other);

                        list.Add("other", valueother.PtrVal);
                        Create("CSqlIndex", list);
                        RegisterCallBack();
                        this.needDispose = true;
                        GlobalTraceInfoMap.Put(this);
                    }
                    ///<summary>
                    ///赋值操作符的重载
                    ///</summary>
                    ///<param name="other">索引对象</param>
                    ///<returns></returns>
                    public EarthView.World.Core.Database.SqlIndex OperatorAssign(EarthView.World.Core.Database.SqlIndex other)
                    {
                        IntPtr __ptr = EarthView_World_Core_Database_CSqlIndex_OperatorAssign_CSqlIndex_CSqlIndex(this.NativeObject, object.Equals(other, null) ? IntPtr.Zero : other.NativeObject);

                        EarthView.World.Core.Database.SqlIndex csObj = new EarthView.World.Core.Database.SqlIndex(CreatedWhenConstruct.CWC_NotToCreate);
                        csObj.BindNativeObject(__ptr, "CSqlIndex");
                        csObj.Delegate = true;
                        IClassFactory csObjClassFactory = GlobalClassFactoryMap.Get(csObj.GetCppInstanceTypeName());

                        if (csObjClassFactory != null)
                        {
                            csObj.Delegate = true;
                            csObj          = csObjClassFactory.Create() as EarthView.World.Core.Database.SqlIndex;
                            csObj.BindNativeObject(__ptr, "CSqlIndex");
                            csObj.Delegate = true;
                        }
                        return(csObj);
                    }