ArcEngine code to traverse GDB file geographic database and all files in the same directory

QQ exchange group: 607330463 The strongest exchange group of GIS development technology. Reprinting is prohibited without permission. You can refer to

(1) Description

(2) Core code

Call code

                IterationGDBImpl IterationGDBImpl = new IterationGDBImpl();
                Dictionary<string, object> GetGDBList = IterationGDBImpl.GetMiddleLibraryGDBList(@"E:\aGTKJDATA\GeoDataBase.gdb", true);

Name and description of the entity class code

    class NameAndDesc
    {
        public NameAndDesc(string name, string desc)
        {
            this._name = name;
            this._desc = desc;
        }
        string _name;
       

Guess you like

Origin blog.csdn.net/qq_30430463/article/details/113195303