private void LoadDXF(string path) { try { DiskFile iLoader = new DiskFile(path); DXFConvert.DXFStructure dxfStructure = new DXFConvert.DXFStructure(iLoader); dxfStructure.Load(); iLoader.Dispose(); GoView.Set(dxfStructure); Debug.Log("OK:" + path); } catch (System.Exception ex) { Debug.Log("Error:" + path); Debug.LogError(ex.ToString()); } }