在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 代码生成器

代码生成器

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:24.67M
  • 下载次数:35
  • 浏览次数:306
  • 发布时间:2022-04-20
  • 实例类别:C#语言基础
  • 发 布 人:caiqingnan
  • 文件格式:.7z
  • 所需积分:2

实例介绍

【实例简介】代码生成器

【实例截图】

from clipboard

【核心代码】

.
└── mysql代码生成
    ├── openresty
    │   ├── openresty-1.19.3.1-win64
    │   │   ├── COPYRIGHT
    │   │   ├── README.txt
    │   │   ├── client_body_temp
    │   │   ├── conf
    │   │   │   ├── fastcgi.conf
    │   │   │   ├── fastcgi.conf.default
    │   │   │   ├── fastcgi_params
    │   │   │   ├── fastcgi_params.default
    │   │   │   ├── koi-utf
    │   │   │   ├── koi-win
    │   │   │   ├── mime.types
    │   │   │   ├── mime.types.default
    │   │   │   ├── nginx.conf
    │   │   │   ├── nginx.conf.default
    │   │   │   ├── scgi_params
    │   │   │   ├── scgi_params.default
    │   │   │   ├── uwsgi_params
    │   │   │   ├── uwsgi_params.default
    │   │   │   └── win-utf
    │   │   ├── fastcgi_temp
    │   │   ├── html
    │   │   │   ├── 50x.html
    │   │   │   └── index.html
    │   │   ├── include
    │   │   │   └── luajit-2.1
    │   │   │       ├── lauxlib.h
    │   │   │       ├── lua.h
    │   │   │       ├── lua.hpp
    │   │   │       ├── luaconf.h
    │   │   │       ├── luajit.h
    │   │   │       └── lualib.h
    │   │   ├── logs
    │   │   │   ├── access.log
    │   │   │   ├── error.log
    │   │   │   └── nginx.pid
    │   │   ├── lua
    │   │   │   └── jit
    │   │   │       ├── bc.lua
    │   │   │       ├── bcsave.lua
    │   │   │       ├── dis_arm.lua
    │   │   │       ├── dis_arm64.lua
    │   │   │       ├── dis_arm64be.lua
    │   │   │       ├── dis_mips.lua
    │   │   │       ├── dis_mips64.lua
    │   │   │       ├── dis_mips64el.lua
    │   │   │       ├── dis_mips64r6.lua
    │   │   │       ├── dis_mips64r6el.lua
    │   │   │       ├── dis_mipsel.lua
    │   │   │       ├── dis_ppc.lua
    │   │   │       ├── dis_x64.lua
    │   │   │       ├── dis_x86.lua
    │   │   │       ├── dump.lua
    │   │   │       ├── p.lua
    │   │   │       ├── v.lua
    │   │   │       ├── vmdef.lua
    │   │   │       └── zone.lua
    │   │   ├── lua51.dll
    │   │   ├── luajit.exe
    │   │   ├── lualib
    │   │   │   ├── cjson.so
    │   │   │   ├── ngx
    │   │   │   │   ├── balancer.lua
    │   │   │   │   ├── base64.lua
    │   │   │   │   ├── errlog.lua
    │   │   │   │   ├── ocsp.lua
    │   │   │   │   ├── pipe.lua
    │   │   │   │   ├── process.lua
    │   │   │   │   ├── re.lua
    │   │   │   │   ├── req.lua
    │   │   │   │   ├── resp.lua
    │   │   │   │   ├── semaphore.lua
    │   │   │   │   ├── ssl
    │   │   │   │   │   └── session.lua
    │   │   │   │   └── ssl.lua
    │   │   │   ├── redis
    │   │   │   │   └── parser.so
    │   │   │   ├── resty
    │   │   │   │   ├── aes.lua
    │   │   │   │   ├── core
    │   │   │   │   │   ├── base.lua
    │   │   │   │   │   ├── base64.lua
    │   │   │   │   │   ├── ctx.lua
    │   │   │   │   │   ├── exit.lua
    │   │   │   │   │   ├── hash.lua
    │   │   │   │   │   ├── misc.lua
    │   │   │   │   │   ├── ndk.lua
    │   │   │   │   │   ├── phase.lua
    │   │   │   │   │   ├── regex.lua
    │   │   │   │   │   ├── request.lua
    │   │   │   │   │   ├── response.lua
    │   │   │   │   │   ├── shdict.lua
    │   │   │   │   │   ├── socket.lua
    │   │   │   │   │   ├── time.lua
    │   │   │   │   │   ├── uri.lua
    │   │   │   │   │   ├── utils.lua
    │   │   │   │   │   ├── var.lua
    │   │   │   │   │   └── worker.lua
    │   │   │   │   ├── core.lua
    │   │   │   │   ├── dns
    │   │   │   │   │   └── resolver.lua
    │   │   │   │   ├── limit
    │   │   │   │   │   ├── conn.lua
    │   │   │   │   │   ├── count.lua
    │   │   │   │   │   ├── req.lua
    │   │   │   │   │   └── traffic.lua
    │   │   │   │   ├── lock.lua
    │   │   │   │   ├── lrucache
    │   │   │   │   │   └── pureffi.lua
    │   │   │   │   ├── lrucache.lua
    │   │   │   │   ├── md5.lua
    │   │   │   │   ├── memcached.lua
    │   │   │   │   ├── mysql.lua
    │   │   │   │   ├── random.lua
    │   │   │   │   ├── redis.lua
    │   │   │   │   ├── sha.lua
    │   │   │   │   ├── sha1.lua
    │   │   │   │   ├── sha224.lua
    │   │   │   │   ├── sha256.lua
    │   │   │   │   ├── sha384.lua
    │   │   │   │   ├── sha512.lua
    │   │   │   │   ├── string.lua
    │   │   │   │   ├── upload.lua
    │   │   │   │   ├── upstream
    │   │   │   │   │   └── healthcheck.lua
    │   │   │   │   └── websocket
    │   │   │   │       ├── client.lua
    │   │   │   │       ├── protocol.lua
    │   │   │   │       └── server.lua
    │   │   │   └── tablepool.lua
    │   │   ├── nginx.exe
    │   │   ├── pod
    │   │   │   ├── array-var-nginx-module-0.05
    │   │   │   │   └── array-var-nginx-module-0.05.pod
    │   │   │   ├── drizzle-nginx-module-0.1.11
    │   │   │   │   └── drizzle-nginx-module-0.1.11.pod
    │   │   │   ├── echo-nginx-module-0.62
    │   │   │   │   └── echo-nginx-module-0.62.pod
    │   │   │   ├── encrypted-session-nginx-module-0.08
    │   │   │   │   └── encrypted-session-nginx-module-0.08.pod
    │   │   │   ├── form-input-nginx-module-0.12
    │   │   │   │   └── form-input-nginx-module-0.12.pod
    │   │   │   ├── headers-more-nginx-module-0.33
    │   │   │   │   └── headers-more-nginx-module-0.33.pod
    │   │   │   ├── iconv-nginx-module-0.14
    │   │   │   │   └── iconv-nginx-module-0.14.pod
    │   │   │   ├── lua-5.1.5
    │   │   │   │   └── lua-5.1.5.pod
    │   │   │   ├── lua-cjson-2.1.0.8
    │   │   │   │   └── lua-cjson-2.1.0.8.pod
    │   │   │   ├── lua-rds-parser-0.06
    │   │   │   ├── lua-redis-parser-0.13
    │   │   │   │   └── lua-redis-parser-0.13.pod
    │   │   │   ├── lua-resty-core-0.1.21
    │   │   │   │   ├── lua-resty-core-0.1.21.pod
    │   │   │   │   ├── ngx.balancer.pod
    │   │   │   │   ├── ngx.base64.pod
    │   │   │   │   ├── ngx.errlog.pod
    │   │   │   │   ├── ngx.ocsp.pod
    │   │   │   │   ├── ngx.pipe.pod
    │   │   │   │   ├── ngx.process.pod
    │   │   │   │   ├── ngx.re.pod
    │   │   │   │   ├── ngx.req.pod
    │   │   │   │   ├── ngx.resp.pod
    │   │   │   │   ├── ngx.semaphore.pod
    │   │   │   │   ├── ngx.ssl.pod
    │   │   │   │   └── ngx.ssl.session.pod
    │   │   │   ├── lua-resty-dns-0.21
    │   │   │   │   └── lua-resty-dns-0.21.pod
    │   │   │   ├── lua-resty-limit-traffic-0.07
    │   │   │   │   ├── lua-resty-limit-traffic-0.07.pod
    │   │   │   │   ├── resty.limit.conn.pod
    │   │   │   │   ├── resty.limit.count.pod
    │   │   │   │   ├── resty.limit.req.pod
    │   │   │   │   └── resty.limit.traffic.pod
    │   │   │   ├── lua-resty-lock-0.08
    │   │   │   │   └── lua-resty-lock-0.08.pod
    │   │   │   ├── lua-resty-lrucache-0.10
    │   │   │   │   └── lua-resty-lrucache-0.10.pod
    │   │   │   ├── lua-resty-memcached-0.15
    │   │   │   │   └── lua-resty-memcached-0.15.pod
    │   │   │   ├── lua-resty-mysql-0.23
    │   │   │   │   └── lua-resty-mysql-0.23.pod
    │   │   │   ├── lua-resty-redis-0.29
    │   │   │   │   └── lua-resty-redis-0.29.pod
    │   │   │   ├── lua-resty-shell-0.03
    │   │   │   │   └── lua-resty-shell-0.03.pod
    │   │   │   ├── lua-resty-signal-0.02
    │   │   │   │   └── lua-resty-signal-0.02.pod
    │   │   │   ├── lua-resty-string-0.12
    │   │   │   │   └── lua-resty-string-0.12.pod
    │   │   │   ├── lua-resty-upload-0.10
    │   │   │   │   └── lua-resty-upload-0.10.pod
    │   │   │   ├── lua-resty-upstream-healthcheck-0.06
    │   │   │   │   └── lua-resty-upstream-healthcheck-0.06.pod
    │   │   │   ├── lua-resty-websocket-0.08
    │   │   │   │   └── lua-resty-websocket-0.08.pod
    │   │   │   ├── lua-tablepool-0.01
    │   │   │   │   └── lua-tablepool-0.01.pod
    │   │   │   ├── luajit-2.1
    │   │   │   │   ├── changes.pod
    │   │   │   │   ├── contact.pod
    │   │   │   │   ├── ext_c_api.pod
    │   │   │   │   ├── ext_ffi.pod
    │   │   │   │   ├── ext_ffi_api.pod
    │   │   │   │   ├── ext_ffi_semantics.pod
    │   │   │   │   ├── ext_ffi_tutorial.pod
    │   │   │   │   ├── ext_jit.pod
    │   │   │   │   ├── ext_profiler.pod
    │   │   │   │   ├── extensions.pod
    │   │   │   │   ├── faq.pod
    │   │   │   │   ├── install.pod
    │   │   │   │   ├── luajit-2.1.pod
    │   │   │   │   ├── running.pod
    │   │   │   │   └── status.pod
    │   │   │   ├── luajit-2.1-20201027
    │   │   │   │   └── luajit-2.1-20201027.pod
    │   │   │   ├── memc-nginx-module-0.19
    │   │   │   │   └── memc-nginx-module-0.19.pod
    │   │   │   ├── nginx
    │   │   │   │   ├── accept_failed.pod
    │   │   │   │   ├── beginners_guide.pod
    │   │   │   │   ├── chunked_encoding_from_backend.pod
    │   │   │   │   ├── configure.pod
    │   │   │   │   ├── configuring_https_servers.pod
    │   │   │   │   ├── contributing_changes.pod
    │   │   │   │   ├── control.pod
    │   │   │   │   ├── converting_rewrite_rules.pod
    │   │   │   │   ├── daemon_master_process_off.pod
    │   │   │   │   ├── debugging_log.pod
    │   │   │   │   ├── development_guide.pod
    │   │   │   │   ├── events.pod
    │   │   │   │   ├── example.pod
    │   │   │   │   ├── faq.pod
    │   │   │   │   ├── freebsd_tuning.pod
    │   │   │   │   ├── hash.pod
    │   │   │   │   ├── howto_build_on_win32.pod
    │   │   │   │   ├── install.pod
    │   │   │   │   ├── license_copyright.pod
    │   │   │   │   ├── load_balancing.pod
    │   │   │   │   ├── nginx.pod
    │   │   │   │   ├── nginx_dtrace_pid_provider.pod
    │   │   │   │   ├── ngx_core_module.pod
    │   │   │   │   ├── ngx_google_perftools_module.pod
    │   │   │   │   ├── ngx_http_access_module.pod
    │   │   │   │   ├── ngx_http_addition_module.pod
    │   │   │   │   ├── ngx_http_api_module_head.pod
    │   │   │   │   ├── ngx_http_auth_basic_module.pod
    │   │   │   │   ├── ngx_http_auth_jwt_module.pod
    │   │   │   │   ├── ngx_http_auth_request_module.pod
    │   │   │   │   ├── ngx_http_autoindex_module.pod
    │   │   │   │   ├── ngx_http_browser_module.pod
    │   │   │   │   ├── ngx_http_charset_module.pod
    │   │   │   │   ├── ngx_http_core_module.pod
    │   │   │   │   ├── ngx_http_dav_module.pod
    │   │   │   │   ├── ngx_http_empty_gif_module.pod
    │   │   │   │   ├── ngx_http_f4f_module.pod
    │   │   │   │   ├── ngx_http_fastcgi_module.pod
    │   │   │   │   ├── ngx_http_flv_module.pod
    │   │   │   │   ├── ngx_http_geo_module.pod
    │   │   │   │   ├── ngx_http_geoip_module.pod
    │   │   │   │   ├── ngx_http_grpc_module.pod
    │   │   │   │   ├── ngx_http_gunzip_module.pod
    │   │   │   │   ├── ngx_http_gzip_module.pod
    │   │   │   │   ├── ngx_http_gzip_static_module.pod
    │   │   │   │   ├── ngx_http_headers_module.pod
    │   │   │   │   ├── ngx_http_hls_module.pod
    │   │   │   │   ├── ngx_http_image_filter_module.pod
    │   │   │   │   ├── ngx_http_index_module.pod
    │   │   │   │   ├── ngx_http_js_module.pod
    │   │   │   │   ├── ngx_http_keyval_module.pod
    │   │   │   │   ├── ngx_http_limit_conn_module.pod
    │   │   │   │   ├── ngx_http_limit_req_module.pod
    │   │   │   │   ├── ngx_http_log_module.pod
    │   │   │   │   ├── ngx_http_map_module.pod
    │   │   │   │   ├── ngx_http_memcached_module.pod
    │   │   │   │   ├── ngx_http_mirror_module.pod
    │   │   │   │   ├── ngx_http_mp4_module.pod
    │   │   │   │   ├── ngx_http_perl_module.pod
    │   │   │   │   ├── ngx_http_proxy_module.pod
    │   │   │   │   ├── ngx_http_random_index_module.pod
    │   │   │   │   ├── ngx_http_realip_module.pod
    │   │   │   │   ├── ngx_http_referer_module.pod
    │   │   │   │   ├── ngx_http_rewrite_module.pod
    │   │   │   │   ├── ngx_http_scgi_module.pod
    │   │   │   │   ├── ngx_http_secure_link_module.pod
    │   │   │   │   ├── ngx_http_session_log_module.pod
    │   │   │   │   ├── ngx_http_slice_module.pod
    │   │   │   │   ├── ngx_http_spdy_module.pod
    │   │   │   │   ├── ngx_http_split_clients_module.pod
    │   │   │   │   ├── ngx_http_ssi_module.pod
    │   │   │   │   ├── ngx_http_ssl_module.pod
    │   │   │   │   ├── ngx_http_status_module.pod
    │   │   │   │   ├── ngx_http_stub_status_module.pod
    │   │   │   │   ├── ngx_http_sub_module.pod
    │   │   │   │   ├── ngx_http_upstream_conf_module.pod
    │   │   │   │   ├── ngx_http_upstream_hc_module.pod
    │   │   │   │   ├── ngx_http_upstream_module.pod
    │   │   │   │   ├── ngx_http_userid_module.pod
    │   │   │   │   ├── ngx_http_uwsgi_module.pod
    │   │   │   │   ├── ngx_http_v2_module.pod
    │   │   │   │   ├── ngx_http_xslt_module.pod
    │   │   │   │   ├── ngx_mail_auth_http_module.pod
    │   │   │   │   ├── ngx_mail_core_module.pod
    │   │   │   │   ├── ngx_mail_imap_module.pod
    │   │   │   │   ├── ngx_mail_pop3_module.pod
    │   │   │   │   ├── ngx_mail_proxy_module.pod
    │   │   │   │   ├── ngx_mail_smtp_module.pod
    │   │   │   │   ├── ngx_mail_ssl_module.pod
    │   │   │   │   ├── ngx_stream_access_module.pod
    │   │   │   │   ├── ngx_stream_core_module.pod
    │   │   │   │   ├── ngx_stream_geo_module.pod
    │   │   │   │   ├── ngx_stream_geoip_module.pod
    │   │   │   │   ├── ngx_stream_js_module.pod
    │   │   │   │   ├── ngx_stream_keyval_module.pod
    │   │   │   │   ├── ngx_stream_limit_conn_module.pod
    │   │   │   │   ├── ngx_stream_log_module.pod
    │   │   │   │   ├── ngx_stream_map_module.pod
    │   │   │   │   ├── ngx_stream_proxy_module.pod
    │   │   │   │   ├── ngx_stream_realip_module.pod
    │   │   │   │   ├── ngx_stream_return_module.pod
    │   │   │   │   ├── ngx_stream_set_module.pod
    │   │   │   │   ├── ngx_stream_split_clients_module.pod
    │   │   │   │   ├── ngx_stream_ssl_module.pod
    │   │   │   │   ├── ngx_stream_ssl_preread_module.pod
    │   │   │   │   ├── ngx_stream_upstream_hc_module.pod
    │   │   │   │   ├── ngx_stream_upstream_module.pod
    │   │   │   │   ├── ngx_stream_zone_sync_module.pod
    │   │   │   │   ├── request_processing.pod
    │   │   │   │   ├── server_names.pod
    │   │   │   │   ├── stream_processing.pod
    │   │   │   │   ├── switches.pod
    │   │   │   │   ├── syntax.pod
    │   │   │   │   ├── sys_errlist.pod
    │   │   │   │   ├── syslog.pod
    │   │   │   │   ├── variables_in_config.pod
    │   │   │   │   ├── websocket.pod
    │   │   │   │   ├── welcome_nginx_facebook.pod
    │   │   │   │   └── windows.pod
    │   │   │   ├── ngx_coolkit-0.2
    │   │   │   ├── ngx_devel_kit-0.3.1
    │   │   │   │   ├── ngx_devel_kit-0.3.1.pod
    │   │   │   │   └── readme_auto_lib.pod
    │   │   │   ├── ngx_lua-0.10.19
    │   │   │   │   └── ngx_lua-0.10.19.pod
    │   │   │   ├── ngx_lua_upstream-0.07
    │   │   │   │   └── ngx_lua_upstream-0.07.pod
    │   │   │   ├── ngx_postgres-1.0
    │   │   │   │   ├── ngx_postgres-1.0.pod
    │   │   │   │   └── todo.pod
    │   │   │   ├── ngx_stream_lua-0.0.9
    │   │   │   │   ├── dev_notes.pod
    │   │   │   │   └── ngx_stream_lua-0.0.9.pod
    │   │   │   ├── opm-0.0.5
    │   │   │   │   └── opm-0.0.5.pod
    │   │   │   ├── rds-csv-nginx-module-0.09
    │   │   │   │   └── rds-csv-nginx-module-0.09.pod
    │   │   │   ├── rds-json-nginx-module-0.15
    │   │   │   │   └── rds-json-nginx-module-0.15.pod
    │   │   │   ├── redis-nginx-module-0.3.7
    │   │   │   ├── redis2-nginx-module-0.15
    │   │   │   │   └── redis2-nginx-module-0.15.pod
    │   │   │   ├── resty-cli-0.27
    │   │   │   │   └── resty-cli-0.27.pod
    │   │   │   ├── set-misc-nginx-module-0.32
    │   │   │   │   └── set-misc-nginx-module-0.32.pod
    │   │   │   ├── srcache-nginx-module-0.32
    │   │   │   │   └── srcache-nginx-module-0.32.pod
    │   │   │   └── xss-nginx-module-0.06
    │   │   │       └── xss-nginx-module-0.06.pod
    │   │   ├── proxy_temp
    │   │   ├── resty
    │   │   ├── resty.bat
    │   │   ├── restydoc
    │   │   ├── restydoc-index
    │   │   ├── restydoc-index.bat
    │   │   ├── restydoc.bat
    │   │   ├── scgi_temp
    │   │   └── uwsgi_temp
    │   └── openresty-1.19.3.1-win64.zip
    └── 代码
        ├── 51Aspx源码必读.txt
        ├── App_Data
        │   └── PublishProfiles
        │       └── FolderProfile.pubxml
        ├── Default.aspx
        ├── Default.aspx.cs
        ├── Mysql代码生成器.sln
        ├── Mysql代码生成器.suo
        ├── WoNiuMySQLTool_2348be05-6eb9-4250-a8a5-910880d0b3fa.zip
        ├── bin
        │   ├── MySql.Data.dll
        │   └── MySql.Data.dll.refresh
        ├── dnSpy
        │   ├── BackgroundImage
        │   │   ├── BackgroundImageOptionDefinitionService.cs
        │   │   ├── BackgroundImageOptionDefinitions.cs
        │   │   ├── BackgroundImageService.cs
        │   │   ├── BackgroundImageSettings.cs
        │   │   ├── BackgroundImageSettingsService.cs
        │   │   ├── DefaultRawSettings.cs
        │   │   ├── Dialog
        │   │   │   ├── AppSettingsPageImpl.cs
        │   │   │   ├── AppSettingsPageProvider.cs
        │   │   │   └── Settings.cs
        │   │   ├── HexViewBackgroundImageService.cs
        │   │   ├── IBackgroundImageOptionDefinitionService.cs
        │   │   ├── IBackgroundImageSettings.cs
        │   │   ├── IBackgroundImageSettingsService.cs
        │   │   ├── IImageSourceService.cs
        │   │   ├── IImageSourceServiceListener.cs
        │   │   ├── IImageSourceServiceProvider.cs
        │   │   ├── ImageSettingsInfo.cs
        │   │   ├── ImageSourceService.cs
        │   │   ├── ImageSourceServiceProvider.cs
        │   │   ├── RawSettings.cs
        │   │   ├── TextViewBackgroundImageService.cs
        │   │   ├── WpfHexViewCreationListenerImpl.cs
        │   │   └── WpfTextViewCreationListener.cs
        │   ├── Bookmarks
        │   │   ├── BookmarkImageUtilities.cs
        │   │   ├── BookmarkKind.cs
        │   │   ├── Commands
        │   │   │   ├── AppMenuCommands.cs
        │   │   │   ├── MainMenuOperations.cs
        │   │   │   └── MainMenuOperationsImpl.cs
        │   │   ├── DotNet
        │   │   │   ├── BookmarkFormatterService.cs
        │   │   │   ├── BookmarkFormatterServiceImpl.cs
        │   │   │   ├── BookmarkLocationFormatterProviderImpl.cs
        │   │   │   ├── DotNetBookmarkFactoryImpl.cs
        │   │   │   ├── DotNetBookmarkLocationFactory.cs
        │   │   │   ├── DotNetBookmarkLocationFactoryImpl.cs
        │   │   │   ├── DotNetBookmarkLocationFormatter.cs
        │   │   │   ├── DotNetBookmarkLocationSerializer.cs
        │   │   │   ├── DotNetMethodBodyBookmarkLocationFormatterImpl.cs
        │   │   │   ├── DotNetMethodBodyBookmarkLocationImpl.cs
        │   │   │   ├── DotNetMethodBodyBookmarkLocationSerializer.cs
        │   │   │   ├── DotNetReferenceConverter.cs
        │   │   │   ├── DotNetTokenBookmarkLocationFormatterImpl.cs
        │   │   │   ├── DotNetTokenBookmarkLocationImpl.cs
        │   │   │   ├── DotNetTokenBookmarkLocationSerializer.cs
        │   │   │   ├── IDotNetBookmarkLocation.cs
        │   │   │   └── TextEditor
        │   │   │       ├── BookmarkDocumentProviderImpl.cs
        │   │   │       ├── BookmarkGlyphTextMarkerLocationProviderImpl.cs
        │   │   │       ├── DeleteBookmarksInRemovedModules.cs
        │   │   │       ├── TextViewDotNetMethodBodyBookmarkLocationProvider.cs
        │   │   │       └── TextViewDotNetTokenBookmarkLocationProvider.cs
        │   │   ├── Impl
        │   │   │   ├── BookmarkDisplaySettingsBase.cs
        │   │   │   ├── BookmarkDisplaySettingsImpl.cs
        │   │   │   ├── BookmarkImpl.cs
        │   │   │   ├── BookmarkLocationFormatterService.cs
        │   │   │   ├── BookmarkLocationFormatterServiceImpl.cs
        │   │   │   ├── BookmarkLocationSerializerService.cs
        │   │   │   ├── BookmarkLocationSerializerServiceImpl.cs
        │   │   │   ├── BookmarkSerializerService.cs
        │   │   │   ├── BookmarkSerializerServiceImpl.cs
        │   │   │   ├── BookmarksListSettings.cs
        │   │   │   ├── BookmarksListSettingsListener.cs
        │   │   │   ├── BookmarksSerializer.cs
        │   │   │   ├── BookmarksServiceImpl.cs
        │   │   │   └── NullBookmarkLocationFormatter.cs
        │   │   ├── Navigator
        │   │   │   ├── BookmarkNavigator2.cs
        │   │   │   ├── BookmarkNavigatorImpl.cs
        │   │   │   └── ViewBookmarkProvider.cs
        │   │   ├── Settings
        │   │   │   ├── BookmarksAppSettingsPage.cs
        │   │   │   ├── BookmarksAppSettingsPageProvider.cs
        │   │   │   ├── BookmarksSettingsBase.cs
        │   │   │   └── BookmarksSettingsImpl.cs
        │   │   ├── TextEditor
        │   │   │   ├── BookmarkGlyphTextMarkerHandler.cs
        │   │   │   ├── BookmarkGlyphTextMarkerHandlerImpl.cs
        │   │   │   ├── BookmarkGlyphTextMarkerLocationProviderService.cs
        │   │   │   ├── BookmarkGlyphTextMarkerLocationProviderServiceImpl.cs
        │   │   │   ├── BookmarkInfo.cs
        │   │   │   ├── BookmarkMarker.cs
        │   │   │   ├── BookmarkMarkerDocumentViewerListener.cs
        │   │   │   ├── DocViewer
        │   │   │   │   ├── DocumentViewerBookmarksOperations.cs
        │   │   │   │   ├── DocumentViewerBookmarksOperationsImpl.cs
        │   │   │   │   ├── DocumentViewerBookmarksOperationsProvider.cs
        │   │   │   │   ├── DocumentViewerBookmarksOperationsProviderImpl.cs
        │   │   │   │   ├── DocumentViewerCommandInfoProvider.cs
        │   │   │   │   ├── DocumentViewerCommandTargetFilter.cs
        │   │   │   │   └── DocumentViewerCommandTargetFilterProvider.cs
        │   │   │   ├── EnableAllBookmarksKind.cs
        │   │   │   ├── TextViewBookmarkService.cs
        │   │   │   ├── TextViewBookmarkServiceImpl.cs
        │   │   │   ├── ToggleCreateBookmarkKind.cs
        │   │   │   └── ToggleEnableBookmarkKind.cs
        │   │   ├── ToolWindows
        │   │   │   ├── Bookmarks
        │   │   │   │   ├── BookmarkColumnConverter.cs
        │   │   │   │   ├── BookmarkContext.cs
        │   │   │   │   ├── BookmarkFormatter.cs
        │   │   │   │   ├── BookmarkFormatterProvider.cs
        │   │   │   │   ├── BookmarkNameTaggerProvider.cs
        │   │   │   │   ├── BookmarkTagger.cs
        │   │   │   │   ├── BookmarkVM.cs
        │   │   │   │   ├── BookmarksCommandsLoader.cs
        │   │   │   │   ├── BookmarksContent.cs
        │   │   │   │   ├── BookmarksControl.xaml
        │   │   │   │   ├── BookmarksControl.xaml.cs
        │   │   │   │   ├── BookmarksCtxMenuCommand.cs
        │   │   │   │   ├── BookmarksCtxMenuContext.cs
        │   │   │   │   ├── BookmarksOperations.cs
        │   │   │   │   ├── BookmarksOperationsImpl.cs
        │   │   │   │   ├── BookmarksToolWindowContent.cs
        │   │   │   │   ├── BookmarksToolWindowContentProvider.cs
        │   │   │   │   ├── BookmarksVM.cs
        │   │   │   │   ├── BookmarksWindowColumnIds.cs
        │   │   │   │   ├── CopyBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── DisableBookmarkBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── EditLabelsBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── EditNameBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── EnableBookmarkBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ExportSelectedBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── GoToSourceBookmarkCtxMenuCommand.cs
        │   │   │   │   ├── IBookmarkContext.cs
        │   │   │   │   ├── IBookmarksContent.cs
        │   │   │   │   ├── IBookmarksVM.cs
        │   │   │   │   ├── RemoveAllBookmarksBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── RemoveBookmarkBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── SearchTextClassifierProvider.cs
        │   │   │   │   ├── SelectAllBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowDeclaringTypesBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowModuleNamesBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowNamespacesBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowParameterNamesBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowParameterTypesBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowReturnTypesBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowTokensBookmarksCtxMenuCommand.cs
        │   │   │   │   ├── ShowTypeKeywordsBookmarksCtxMenuCommand.cs
        │   │   │   │   └── ViewBookmarkProviderImpl.cs
        │   │   │   ├── ILazyToolWindowVM.cs
        │   │   │   └── LazyToolWindowVMHelper.cs
        │   │   └── UI
        │   │       ├── BulkObservableCollection.cs
        │   │       ├── ContentTypeDefinitions.cs
        │   │       └── FormatterObject.cs
        │   ├── Commands
        │   │   ├── CommandService.cs
        │   │   ├── DefaultCommandInfoProvider.cs
        │   │   ├── KeyShortcutCollection.cs
        │   │   ├── ProviderAndCommand.cs
        │   │   └── RegisteredCommandElement.cs
        │   ├── Controls
        │   │   ├── CurrentWinSysType.cs
        │   │   ├── DpiService.cs
        │   │   ├── FastTreeNodeView.cs
        │   │   ├── GridChildLength.cs
        │   │   ├── IDpiService.cs
        │   │   ├── IStackedContentChild.cs
        │   │   ├── Screen.cs
        │   │   ├── StackedContent.cs
        │   │   ├── StackedContentChildImpl.cs
        │   │   ├── StackedContentChildInfo.cs
        │   │   ├── StackedContentState.cs
        │   │   ├── StackedContentStateSerializer.cs
        │   │   ├── SysMenuButton.cs
        │   │   ├── TabButton.cs
        │   │   ├── TextElementFactory.cs
        │   │   ├── TextElementFactoryImpl.cs
        │   │   ├── WinSysButton.cs
        │   │   ├── WinSysType.cs
        │   │   ├── WindowDpiChangedEventArgs.cs
        │   │   ├── WpfCommandService.cs
        │   │   ├── WpfCommands.cs
        │   │   ├── WpfFocusService.cs
        │   │   └── ZoomSelector.cs
        │   ├── Culture
        │   │   ├── Constants.cs
        │   │   ├── CultureService.cs
        │   │   ├── CultureSettings.cs
        │   │   ├── CultureSettingsImpl.cs
        │   │   ├── ICultureService.cs
        │   │   ├── ICultureSettings.cs
        │   │   ├── LanguageInfo.cs
        │   │   ├── LanguageInfoComparer.cs
        │   │   ├── LanguageType.cs
        │   │   ├── LanguagesCommand.cs
        │   │   ├── ShowSupportedLanguagesCommand.cs
        │   │   └── SwitchLanguageCommand.cs
        │   ├── Decompiler
        │   │   ├── DecompilerAppSettingsPageContainer.cs
        │   │   ├── DecompilerService.cs
        │   │   ├── DecompilerServiceSettings.cs
        │   │   ├── DecompilerServiceSettingsImpl.cs
        │   │   ├── DummyDecompiler.cs
        │   │   ├── IDecompilerServiceSettings.cs
        │   │   ├── MethodDebugService.cs
        │   │   └── MethodDebugServiceDocumentViewerListener.cs
        │   ├── Disassembly
        │   │   ├── CodeStyleAppSettingsPageContainer.cs
        │   │   ├── CodeStyleConstants.cs
        │   │   ├── Viewer
        │   │   │   ├── CachedSymbolResolver.cs
        │   │   │   ├── DisassemblyAppSettingsPage.cs
        │   │   │   ├── DisassemblyContentOutput.cs
        │   │   │   ├── DisassemblyContentProviderFactoryImpl.cs
        │   │   │   ├── DisassemblyContentSettingsBase.cs
        │   │   │   ├── DisassemblyContentSettingsImpl.cs
        │   │   │   ├── DisassemblyDocumentTabContent.cs
        │   │   │   ├── DisassemblySettingsPageProvider.cs
        │   │   │   ├── DisassemblyViewerServiceImpl.cs
        │   │   │   ├── DisassemblyViewerServiceSettingsImpl.cs
        │   │   │   ├── InternalFormatterOptions.cs
        │   │   │   ├── SymbolResolverUtils.cs
        │   │   │   ├── X86
        │   │   │   │   ├── DisassemblyContentGenerator.cs
        │   │   │   │   ├── DisassemblyContentProviderFactory.cs
        │   │   │   │   ├── DisassemblyContentProviderFactoryDependencies.cs
        │   │   │   │   ├── DisassemblyContentProviderImpl.cs
        │   │   │   │   ├── DocumentViewerToolTipProvider.cs
        │   │   │   │   ├── MnemonicReference.cs
        │   │   │   │   ├── RegisterUtils.cs
        │   │   │   │   └── SymbolKindUtils.cs
        │   │   │   └── X86DisassemblerVM.cs
        │   │   └── X86
        │   │       ├── Block.cs
        │   │       ├── BlockFactory.cs
        │   │       ├── CodeStyleSettingsPageProvider.cs
        │   │       ├── DisasmBooleanSetting.cs
        │   │       ├── DisassemblyCodeStyleAppSettingsPage.cs
        │   │       ├── DisassemblySettings.cs
        │   │       ├── DisassemblySettingsUtils.cs
        │   │       ├── FormatterTextKindExtensions.cs
        │   │       ├── GasAppSettingsPage.cs
        │   │       ├── GasDisassemblySettings.cs
        │   │       ├── GasDisassemblySettingsImpl.cs
        │   │       ├── MasmAppSettingsPage.cs
        │   │       ├── MasmDisassemblySettings.cs
        │   │       ├── MasmDisassemblySettingsImpl.cs
        │   │       ├── NasmAppSettingsPage.cs
        │   │       ├── NasmDisassemblySettings.cs
        │   │       ├── NasmDisassemblySettingsImpl.cs
        │   │       └── X86InstructionInfo.cs
        │   ├── Documents
        │   │   ├── AssemblyResolver.cs
        │   │   ├── DefaultDsDocumentLoader.cs
        │   │   ├── DefaultDsDocumentProvider.cs
        │   │   ├── DocumentToLoad.cs
        │   │   ├── DotNetCorePathProvider.cs
        │   │   ├── DsDocumentLoader.cs
        │   │   ├── DsDocumentService.cs
        │   │   ├── DsDocumentServiceAppSettingsModifiedListener.cs
        │   │   ├── DsDocumentServiceProvider.cs
        │   │   ├── DsDocumentServiceSettings.cs
        │   │   ├── DsDocumentServiceSettingsImpl.cs
        │   │   ├── FileUtils.cs
        │   │   ├── FrameworkPath.cs
        │   │   ├── FrameworkPaths.cs
        │   │   ├── FrameworkVersion.cs
        │   │   ├── IDsDocumentLoader.cs
        │   │   ├── IDsDocumentServiceSettings.cs
        │   │   ├── MethodAnnotations.cs
        │   │   ├── ReferenceNavigatorServiceImpl.cs
        │   │   ├── Tabs
        │   │   │   ├── AllTabsMenuItemCommand.cs
        │   │   │   ├── AppCommandLineArgsHandler.cs
        │   │   │   ├── AsyncShowResult.cs
        │   │   │   ├── BrowseBackCommand.cs
        │   │   │   ├── BrowseForwardCommand.cs
        │   │   │   ├── CloseAllDocumentsCommand.cs
        │   │   │   ├── CloseAllTabGroupsButThisCommand.cs
        │   │   │   ├── CloseAllTabGroupsButThisCtxMenuCommand.cs
        │   │   │   ├── CloseAllTabsButThisCtxMenuCommand.cs
        │   │   │   ├── CloseAllTabsCommand.cs
        │   │   │   ├── CloseAllTabsCtxMenuCommand.cs
        │   │   │   ├── CloseTabCommand.cs
        │   │   │   ├── CloseTabCtxMenuCommand.cs
        │   │   │   ├── CloseTabGroupCommand.cs
        │   │   │   ├── CloseTabGroupCtxMenuCommand.cs
        │   │   │   ├── CopyTokenCommand.cs
        │   │   │   ├── CtxMenuTabGroupCommand.cs
        │   │   │   ├── DecompilationCache.cs
        │   │   │   ├── DecompilationCacheDocumentListListener.cs
        │   │   │   ├── DefaultDecompileNode.cs
        │   │   │   ├── DefaultDocumentList.cs
        │   │   │   ├── DefaultDocumentListFinder.cs
        │   │   │   ├── DefaultDocumentTabContentProvider.cs
        │   │   │   ├── Dialogs
        │   │   │   │   ├── ContentTypeDefinitions.cs
        │   │   │   │   ├── DecompilerVM.cs
        │   │   │   │   ├── DocumentListColumnConverter.cs
        │   │   │   │   ├── DocumentListPrinter.cs
        │   │   │   │   ├── DocumentListVM.cs
        │   │   │   │   ├── DocumentListVM_Comparer.cs
        │   │   │   │   ├── ExportToProjectDlg.xaml
        │   │   │   │   ├── ExportToProjectDlg.xaml.cs
        │   │   │   │   ├── ExportToProjectSettings.cs
        │   │   │   │   ├── ExportToProjectSettingsImpl.cs
        │   │   │   │   ├── ExportToProjectVM.cs
        │   │   │   │   ├── GACFileColumnConverter.cs
        │   │   │   │   ├── GACFileFinder.cs
        │   │   │   │   ├── GACFilePrinter.cs
        │   │   │   │   ├── GACFileVM.cs
        │   │   │   │   ├── GACFileVM_Comparer.cs
        │   │   │   │   ├── GACFileVM_EqualityComparer.cs
        │   │   │   │   ├── IExportTask.cs
        │   │   │   │   ├── IExportToProjectSettings.cs
        │   │   │   │   ├── IGACFileReceiver.cs
        │   │   │   │   ├── ITabsVMSettings.cs
        │   │   │   │   ├── OpenDocumentListDlg.xaml
        │   │   │   │   ├── OpenDocumentListDlg.xaml.cs
        │   │   │   │   ├── OpenDocumentListTextClassifier.cs
        │   │   │   │   ├── OpenDocumentListTextClassifierContext.cs
        │   │   │   │   ├── OpenDocumentListTextClassifierProvider.cs
        │   │   │   │   ├── OpenDocumentListVM.cs
        │   │   │   │   ├── OpenDocumentsHelper.cs
        │   │   │   │   ├── OpenFromGAC.cs
        │   │   │   │   ├── OpenFromGACDlg.xaml
        │   │   │   │   ├── OpenFromGACDlg.xaml.cs
        │   │   │   │   ├── OpenFromGACTextClassifier.cs
        │   │   │   │   ├── OpenFromGACTextClassifierContext.cs
        │   │   │   │   ├── OpenFromGACTextClassifierProvider.cs
        │   │   │   │   ├── OpenFromGACVM.cs
        │   │   │   │   ├── TabColumnConverter.cs
        │   │   │   │   ├── TabPrinter.cs
        │   │   │   │   ├── TabVM.cs
        │   │   │   │   ├── TabsDlg.xaml
        │   │   │   │   ├── TabsDlg.xaml.cs
        │   │   │   │   ├── TabsVM.cs
        │   │   │   │   ├── TabsVMSettings.cs
        │   │   │   │   └── TabsVMSettingsImpl.cs
        │   │   │   ├── DocTabReferenceNavigator.cs
        │   │   │   ├── DocViewer
        │   │   │   │   ├── BlockStructureCollection.cs
        │   │   │   │   ├── BlockStructureDocumentViewerCustomDataProvider.cs
        │   │   │   │   ├── BlockStructureDocumentViewerListener.cs
        │   │   │   │   ├── BlockStructureServiceDataProvider.cs
        │   │   │   │   ├── BracePairCollection.cs
        │   │   │   │   ├── BracePairCommandTargetFilter.cs
        │   │   │   │   ├── BracePairCommandTargetFilterProvider.cs
        │   │   │   │   ├── BracePairDocumentViewerCustomDataProvider.cs
        │   │   │   │   ├── BracePairDocumentViewerListener.cs
        │   │   │   │   ├── BracePairResult.cs
        │   │   │   │   ├── BracePairResultCollection.cs
        │   │   │   │   ├── BracePairService.cs
        │   │   │   │   ├── BracePairServiceProvider.cs
        │   │   │   │   ├── BracePairTag.cs
        │   │   │   │   ├── BracePairViewTagger.cs
        │   │   │   │   ├── BracePairViewTaggerProvider.cs
        │   │   │   │   ├── ContentTypeDefinitions.cs
        │   │   │   │   ├── CopyCodeCtxMenuCommand.cs
        │   │   │   │   ├── DebugInfoDocumentViewerCustomDataProvider.cs
        │   │   │   │   ├── DecompileDocumentTabContent.cs
        │   │   │   │   ├── DecompileDocumentTabContentFactory.cs
        │   │   │   │   ├── DecompileNodeContext.cs
        │   │   │   │   ├── DecompilerTabContentClassifierContext.cs
        │   │   │   │   ├── DecompilerTabContentContentTypes.cs
        │   │   │   │   ├── DecompilerTabContentContext.cs
        │   │   │   │   ├── DecompilerTabContentTextElementProvider.cs
        │   │   │   │   ├── DocumentViewer.cs
        │   │   │   │   ├── DocumentViewerCommandInfoProvider.cs
        │   │   │   │   ├── DocumentViewerCommandTargetFilter.cs
        │   │   │   │   ├── DocumentViewerCommandTargetFilterProvider.cs
        │   │   │   │   ├── DocumentViewerCommandTargetMenuItemBase.cs
        │   │   │   │   ├── DocumentViewerContentFactory.cs
        │   │   │   │   ├── DocumentViewerContentFactoryProvider.cs
        │   │   │   │   ├── DocumentViewerControl.cs
        │   │   │   │   ├── DocumentViewerDotNetSpanMap.cs
        │   │   │   │   ├── DocumentViewerHighlightReferencesTagger.cs
        │   │   │   │   ├── DocumentViewerMouseProcessor.cs
        │   │   │   │   ├── DocumentViewerMouseProcessorProvider.cs
        │   │   │   │   ├── DocumentViewerOutput.cs
        │   │   │   │   ├── DocumentViewerProvider.cs
        │   │   │   │   ├── DocumentViewerService.cs
        │   │   │   │   ├── DocumentViewerUIElement.cs
        │   │   │   │   ├── DocumentViewerUIElementCollection.cs
        │   │   │   │   ├── DocumentViewerUIElementConstants.cs
        │   │   │   │   ├── DocumentViewerUIElementCustomDataProvider.cs
        │   │   │   │   ├── DocumentViewerUIElementListener.cs
        │   │   │   │   ├── DocumentViewerUIElementService.cs
        │   │   │   │   ├── DocumentViewerUIElementServiceProvider.cs
        │   │   │   │   ├── DocumentViewerUIElementTagger.cs
        │   │   │   │   ├── DocumentViewerUIElementTaggerProvider.cs
        │   │   │   │   ├── DocumentWriterService.cs
        │   │   │   │   ├── FindInCodeCommand.cs
        │   │   │   │   ├── FindInCodeContextMenuEntry.cs
        │   │   │   │   ├── GlyphTextMarkerServiceDocumentViewerListener.cs
        │   │   │   │   ├── HighlightCurrentLineCommand.cs
        │   │   │   │   ├── HighlightReferencesDocumentViewerListener.cs
        │   │   │   │   ├── HighlightReferencesViewTaggerProvider.cs
        │   │   │   │   ├── HighlightRelatedKeywordsDocumentViewerReferenceEnabler.cs
        │   │   │   │   ├── HighlightRelatedKeywordsDocumentViewerReferenceEnablerProvid.cs
        │   │   │   │   ├── IBracePairService.cs
        │   │   │   │   ├── IBracePairServiceProvider.cs
        │   │   │   │   ├── IBracePairTag.cs
        │   │   │   │   ├── IDocumentViewerContentFactory.cs
        │   │   │   │   ├── IDocumentViewerContentFactoryProvider.cs
        │   │   │   │   ├── IDocumentViewerHelper.cs
        │   │   │   │   ├── IDocumentViewerServiceImpl.cs
        │   │   │   │   ├── IDocumentViewerUIElementService.cs
        │   │   │   │   ├── IDocumentViewerUIElementServiceProvider.cs
        │   │   │   │   ├── IDocumentViewerUIElementTagger.cs
        │   │   │   │   ├── IncrementalSearchForwardContextMenuEntry.cs
        │   │   │   │   ├── LazyBlockStructureCollection.cs
        │   │   │   │   ├── LineSeparatorCollection.cs
        │   │   │   │   ├── LineSeparatorDocumentViewerCustomDataProvider.cs
        │   │   │   │   ├── LineSeparatorDocumentViewerListener.cs
        │   │   │   │   ├── LineSeparatorViewTagger.cs
        │   │   │   │   ├── LineSeparatorViewTaggerProvider.cs
        │   │   │   │   ├── OpCodeReferenceHandler.cs
        │   │   │   │   ├── Settings
        │   │   │   │   │   ├── AdvancedAppSettingsPage.cs
        │   │   │   │   │   ├── AppSettingsPageContainer.cs
        │   │   │   │   │   ├── AppSettingsPageProvider.cs
        │   │   │   │   │   ├── ContentTypeOptionDefinitionProvider.cs
        │   │   │   │   │   ├── DocumentViewerOptions.cs
        │   │   │   │   │   ├── DocumentViewerOptionsService.cs
        │   │   │   │   │   ├── GeneralAppSettingsPage.cs
        │   │   │   │   │   ├── IDocumentViewerOptions.cs
        │   │   │   │   │   ├── IDocumentViewerOptionsService.cs
        │   │   │   │   │   ├── ScrollBarsAppSettingsPage.cs
        │   │   │   │   │   ├── TabsAppSettingsPage.cs
        │   │   │   │   │   └── TextViewOptionsGroupNameProvider.cs
        │   │   │   │   ├── SpanDataCollectionUtilities.cs
        │   │   │   │   ├── SpanDataReferenceInfoExtensions.cs
        │   │   │   │   ├── SpanReferenceDocumentViewerCustomDataProvider.cs
        │   │   │   │   ├── ToolTips
        │   │   │   │   │   ├── CodeToolTipProvider.cs
        │   │   │   │   │   ├── CodeToolTipSettings.cs
        │   │   │   │   │   ├── CodeToolTipSettingsImpl.cs
        │   │   │   │   │   ├── CodeToolTipWriter.cs
        │   │   │   │   │   ├── DnlibReferenceDocumentViewerToolTipProvider.cs
        │   │   │   │   │   ├── DocumentViewerToolTipService.cs
        │   │   │   │   │   ├── DocumentViewerToolTipServiceCommandTargetFilter.cs
        │   │   │   │   │   ├── DocumentViewerToolTipServiceCommandTargetFilterProvider.cs
        │   │   │   │   │   ├── DocumentViewerToolTipServiceProvider.cs
        │   │   │   │   │   ├── DocumentViewerToolTipServiceQuickInfoSource.cs
        │   │   │   │   │   ├── DocumentViewerToolTipServiceQuickInfoSourceProvider.cs
        │   │   │   │   │   ├── ICodeToolTipSettings.cs
        │   │   │   │   │   ├── NumberDocumentViewerToolTipProvider.cs
        │   │   │   │   │   ├── NumberUtils.cs
        │   │   │   │   │   └── ToolTipProviderContext.cs
        │   │   │   │   ├── WaitAdorner.xaml
        │   │   │   │   ├── WaitAdorner.xaml.cs
        │   │   │   │   ├── WordWrapCommand.cs
        │   │   │   │   ├── WordWrapInit.cs
        │   │   │   │   ├── XmlDocumentWriter.cs
        │   │   │   │   ├── XmlDocumentWriterProvider.cs
        │   │   │   │   └── XmlParser.cs
        │   │   │   ├── DocumentList.cs
        │   │   │   ├── DocumentListLoader.cs
        │   │   │   ├── DocumentListService.cs
        │   │   │   ├── DocumentTabContentFactoryContext.cs
        │   │   │   ├── DocumentTabContentFactoryService.cs
        │   │   │   ├── DocumentTabSerializer.cs
        │   │   │   ├── DocumentTabService.cs
        │   │   │   ├── DocumentTabServiceLoader.cs
        │   │   │   ├── DocumentTabServiceSettings.cs
        │   │   │   ├── DocumentTabServiceSettingsImpl.cs
        │   │   │   ├── DocumentTabUIContextLocator.cs
        │   │   │   ├── DocumentTabUIContextLocatorProvider.cs
        │   │   │   ├── DocumentTreeNodeDecompiler.cs
        │   │   │   ├── DsDocumentInfoSerializer.cs
        │   │   │   ├── ExportProjectCommand.cs
        │   │   │   ├── FindNodeContext.cs
        │   │   │   ├── GoToEntryPointCommand.cs
        │   │   │   ├── GoToGlobalTypeCctorCommand.cs
        │   │   │   ├── GoToResourceCommand.cs
        │   │   │   ├── GoToTokenCommand.cs
        │   │   │   ├── GoToTokenLoader.cs
        │   │   │   ├── Hex
        │   │   │   │   └── HexReferenceHandlerImpl.cs
        │   │   │   ├── IDecompilationCache.cs
        │   │   │   ├── IDocumentListLoader.cs
        │   │   │   ├── IDocumentTabContentFactoryService.cs
        │   │   │   ├── IDocumentTabServiceSettings.cs
        │   │   │   ├── IDocumentTabUIContextLocatorProvider.cs
        │   │   │   ├── IDocumentTreeNodeDecompiler.cs
        │   │   │   ├── InModifiedModuleHelper.cs
        │   │   │   ├── InstallTabCommands.cs
        │   │   │   ├── MenuFileOpenCommand.cs
        │   │   │   ├── MenuSaveCommand.cs
        │   │   │   ├── MenuTabGroupCommand.cs
        │   │   │   ├── MenuTabGroupContext.cs
        │   │   │   ├── MergeAllTabGroupsCommand.cs
        │   │   │   ├── MergeAllTabGroupsCtxMenuCommand.cs
        │   │   │   ├── MoveAllToNextTabGroupCommand.cs
        │   │   │   ├── MoveAllToNextTabGroupCtxMenuCommand.cs
        │   │   │   ├── MoveAllToPreviousTabGroupCommand.cs
        │   │   │   ├── MoveAllToPreviousTabGroupCtxMenuCommand.cs
        │   │   │   ├── MoveTabGroupAfterNextTabGroupCommand.cs
        │   │   │   ├── MoveTabGroupAfterNextTabGroupCtxMenuCommand.cs
        │   │   │   ├── MoveTabGroupBeforePreviousTabGroupCommand.cs
        │   │   │   ├── MoveTabGroupBeforePreviousTabGroupCtxMenuCommand.cs
        │   │   │   ├── MoveToNextTabGroupCommand.cs
        │   │   │   ├── MoveToNextTabGroupCtxMenuCommand.cs
        │   │   │   ├── MoveToPreviousTabGroupCommand.cs
        │   │   │   ├── MoveToPreviousTabGroupCtxMenuCommand.cs
        │   │   │   ├── NavigationCommandInstaller.cs
        │   │   │   ├── NewHorizontalTabGroupCommand.cs
        │   │   │   ├── NewHorizontalTabGroupCtxMenuCommand.cs
        │   │   │   ├── NewTabCtxMenuCommand.cs
        │   │   │   ├── NewVerticalTabGroupCommand.cs
        │   │   │   ├── NewVerticalTabGroupCtxMenuCommand.cs
        │   │   │   ├── NewWindowCommand.cs
        │   │   │   ├── NodeDecompiler.cs
        │   │   │   ├── NodePathNameSerializer.cs
        │   │   │   ├── NodeReferenceDocumentTabContentProvider.cs
        │   │   │   ├── NodeType.cs
        │   │   │   ├── NullDocumentTabContent.cs
        │   │   │   ├── NullDocumentTabUIContext.cs
        │   │   │   ├── OpenContainingFolderCtxMenuCommand.cs
        │   │   │   ├── OpenFileInit.cs
        │   │   │   ├── OpenFromGacCommand.cs
        │   │   │   ├── OpenFromGacCommandLoader.cs
        │   │   │   ├── OpenInNewTabCtxMenuCommand.cs
        │   │   │   ├── OpenListCommand.cs
        │   │   │   ├── OpenReferenceInNewTabCtxMenuCommand.cs
        │   │   │   ├── RecentFilesCommand.cs
        │   │   │   ├── RecentFilesCommandItem.cs
        │   │   │   ├── RedecompileTabs.cs
        │   │   │   ├── ReferenceFileFinder.cs
        │   │   │   ├── RefreshResourcesCommand.cs
        │   │   │   ├── ReloadCommand.cs
        │   │   │   ├── ResourceRef.cs
        │   │   │   ├── SaveCommandInit.cs
        │   │   │   ├── SaveService.cs
        │   │   │   ├── SaveTabCtxMenuCommand.cs
        │   │   │   ├── SearchMsdnCtxMenuCommand.cs
        │   │   │   ├── SerializedPath.cs
        │   │   │   ├── SerializedTab.cs
        │   │   │   ├── SerializedTabGroup.cs
        │   │   │   ├── SerializedTabGroupWindow.cs
        │   │   │   ├── Settings
        │   │   │   │   ├── AssemblyExplorerAppSettingsPage.cs
        │   │   │   │   ├── AssemblyExplorerAppSettingsPageProvider.cs
        │   │   │   │   ├── DocumentFilterTypeVM.cs
        │   │   │   │   └── MemberKindVM.cs
        │   │   │   ├── ShowCodeEditorCommand.cs
        │   │   │   ├── ShowCodeEditorCommandLoader.cs
        │   │   │   ├── SortAssembliesCommand.cs
        │   │   │   ├── SortAssembliesCtxMenuCommand.cs
        │   │   │   ├── TabContentImpl.cs
        │   │   │   ├── TabContentState.cs
        │   │   │   ├── TabGroupContext.cs
        │   │   │   ├── TabHistory.cs
        │   │   │   ├── ToolbarFileOpenCommand.cs
        │   │   │   ├── TreeNodeReferenceDocumentTabContentProvider.cs
        │   │   │   ├── UseHorizontalTabGroupsCommand.cs
        │   │   │   ├── UseHorizontalTabGroupsCtxMenuCommand.cs
        │   │   │   ├── UseVerticalTabGroupsCommand.cs
        │   │   │   └── UseVerticalTabGroupsCtxMenuCommand.cs
        │   │   ├── TargetFrameworkAttributeInfo.cs
        │   │   └── TreeView
        │   │       ├── AssemblyDocumentNodeImpl.cs
        │   │       ├── AssemblyExplorerMostRecentlyUsedList.cs
        │   │       ├── AssemblyExplorerMostRecentlyUsedListImpl.cs
        │   │       ├── AssemblyRefTreeNodeGroup.cs
        │   │       ├── AssemblyReferenceNodeImpl.cs
        │   │       ├── BaseTypeFolderNodeImpl.cs
        │   │       ├── BaseTypeFolderTreeNodeGroup.cs
        │   │       ├── BaseTypeNodeImpl.cs
        │   │       ├── BaseTypeTreeNodeGroup.cs
        │   │       ├── ContentTypeDefinitions.cs
        │   │       ├── DefaultDsDocumentNodeProvider.cs
        │   │       ├── DerivedTypeNodeImpl.cs
        │   │       ├── DerivedTypeTreeNodeGroup.cs
        │   │       ├── DerivedTypesFinder.cs
        │   │       ├── DerivedTypesFolderNodeImpl.cs
        │   │       ├── DerivedTypesFolderTreeNodeGroup.cs
        │   │       ├── DocumentTreeNodeDataContext.cs
        │   │       ├── DocumentTreeNodeGroups.cs
        │   │       ├── DocumentTreeView.cs
        │   │       ├── DocumentTreeViewAppSettingsConstants.cs
        │   │       ├── DocumentTreeViewAppSettingsModifiedListener.cs
        │   │       ├── DocumentTreeViewProvider.cs
        │   │       ├── DocumentTreeViewSettings.cs
        │   │       ├── DocumentTreeViewSettingsImpl.cs
        │   │       ├── EventNodeImpl.cs
        │   │       ├── EventReferenceNodeImpl.cs
        │   │       ├── EventReferenceTreeNodeGroup.cs
        │   │       ├── EventReferencesFolderNodeImpl.cs
        │   │       ├── EventReferencesFolderTreeNodeGroup.cs
        │   │       ├── EventTreeNodeGroup.cs
        │   │       ├── FieldNodeImpl.cs
        │   │       ├── FieldReferenceNodeImpl.cs
        │   │       ├── FieldReferenceTreeNodeGroup.cs
        │   │       ├── FieldReferencesFolderNodeImpl.cs
        │   │       ├── FieldReferencesFolderTreeNodeGroup.cs
        │   │       ├── FieldTreeNodeGroup.cs
        │   │       ├── ITreeNodeGroup2.cs
        │   │       ├── MemberReferenceFinder.cs
        │   │       ├── MessageNodeImpl.cs
        │   │       ├── MessageTreeNodeGroup.cs
        │   │       ├── MethodNodeImpl.cs
        │   │       ├── MethodReferenceNodeImpl.cs
        │   │       ├── MethodReferenceTreeNodeGroup.cs
        │   │       ├── MethodReferencesFolderNodeImpl.cs
        │   │       ├── MethodReferencesFolderTreeNodeGroup.cs
        │   │       ├── MethodTreeNodeGroup.cs
        │   │       ├── ModuleDocumentNodeImpl.cs
        │   │       ├── ModuleRefTreeNodeGroup.cs
        │   │       ├── ModuleReferenceNodeImpl.cs
        │   │       ├── NamespaceNodeImpl.cs
        │   │       ├── NamespaceTreeNodeGroup.cs
        │   │       ├── PEDocumentNodeImpl.cs
        │   │       ├── PropertyNodeImpl.cs
        │   │       ├── PropertyReferenceNodeImpl.cs
        │   │       ├── PropertyReferenceTreeNodeGroup.cs
        │   │       ├── PropertyReferencesFolderNodeImpl.cs
        │   │       ├── PropertyReferencesFolderTreeNodeGroup.cs
        │   │       ├── PropertyTreeNodeGroup.cs
        │   │       ├── ReferencesFolderNodeImpl.cs
        │   │       ├── ReferencesFolderTreeNodeGroup.cs
        │   │       ├── ResourceElementTreeNodeGroup.cs
        │   │       ├── ResourceTreeNodeGroup.cs
        │   │       ├── Resources
        │   │       │   ├── BuiltInResourceElementNodeImpl.cs
        │   │       │   ├── ImageResourceElementNodeImpl.cs
        │   │       │   ├── ImageResourceNodeImpl.cs
        │   │       │   ├── ImageResourceNodeProvider.cs
        │   │       │   ├── ResourceElementSetNodeImpl.cs
        │   │       │   ├── ResourceElementSetNodeProvider.cs
        │   │       │   ├── ResourceNodeFactory.cs
        │   │       │   ├── SerializedImageListStreamerResourceElementNodeImpl.cs
        │   │       │   ├── SerializedImageListStreamerResourceElementNodeProvider.cs
        │   │       │   ├── SerializedImageResourceElementNodeImpl.cs
        │   │       │   ├── SerializedImageResourceElementNodeProvider.cs
        │   │       │   ├── UnknownResourceNodeImpl.cs
        │   │       │   └── UnknownSerializedResourceElementNodeProvider.cs
        │   │       ├── ResourcesFolderNodeImpl.cs
        │   │       ├── ResourcesFolderTreeNodeGroup.cs
        │   │       ├── RootNode.cs
        │   │       ├── TypeNodeImpl.cs
        │   │       ├── TypeRefInfo.cs
        │   │       ├── TypeReferenceNodeImpl.cs
        │   │       ├── TypeReferenceTreeNodeGroup.cs
        │   │       ├── TypeReferencesFolderNodeImpl.cs
        │   │       ├── TypeSpecsFolderNodeImpl.cs
        │   │       ├── TypeSpecsFolderTreeNodeGroup.cs
        │   │       ├── TypeTreeNodeGroup.cs
        │   │       └── UnknownDocumentNodeImpl.cs
        │   ├── Events
        │   │   └── WeakEventList.cs
        │   ├── Extension
        │   │   ├── ExtensionConfig.cs
        │   │   ├── ExtensionConfigReader.cs
        │   │   ├── ExtensionService.cs
        │   │   ├── IExtensionService.cs
        │   │   └── LoadedExtension.cs
        │   ├── Hex
        │   │   ├── Adornments
        │   │   │   ├── HexToolTipProviderFactoryImpl.cs
        │   │   │   └── HexToolTipProviderImpl.cs
        │   │   ├── Bit8ValueFormatter.cs
        │   │   ├── ByteArrayHexBufferStream.cs
        │   │   ├── Classification
        │   │   │   ├── DnSpy
        │   │   │   │   ├── ContentTypeDefinitions.cs
        │   │   │   │   ├── HexTextElementCreatorImpl.cs
        │   │   │   │   └── HexTextElementCreatorProviderImpl.cs
        │   │   │   ├── HexBufferClassifierAggregator.cs
        │   │   │   ├── HexClassificationFormatMapServiceImpl.cs
        │   │   │   ├── HexClassifierAggregator.cs
        │   │   │   ├── HexClassifierAggregatorServiceImpl.cs
        │   │   │   ├── HexEditorFormatMapServiceImpl.cs
        │   │   │   ├── HexTextView.cs
        │   │   │   ├── HexViewClassificationFormatMap.cs
        │   │   │   ├── HexViewClassifierAggregator.cs
        │   │   │   ├── HexViewClassifierAggregatorServiceImpl.cs
        │   │   │   └── HexViewEditorFormatMap.cs
        │   │   ├── Commands
        │   │   │   ├── CommandInfoProvider.cs
        │   │   │   ├── CommandTargetFilter.cs
        │   │   │   ├── CommandTargetFilterProvider.cs
        │   │   │   ├── GoToMetadataDlg.xaml
        │   │   │   ├── GoToMetadataDlg.xaml.cs
        │   │   │   ├── GoToMetadataKind.cs
        │   │   │   ├── GoToMetadataKindVM.cs
        │   │   │   ├── GoToMetadataVM.cs
        │   │   │   ├── GoToPositionDlg.xaml
        │   │   │   ├── GoToPositionDlg.xaml.cs
        │   │   │   ├── GoToPositionVM.cs
        │   │   │   ├── HexBufferDataSaver.cs
        │   │   │   ├── HexCommandConstants.cs
        │   │   │   ├── HexCommandIds.cs
        │   │   │   ├── HexCommandIdsExtensions.cs
        │   │   │   ├── HexCommandOperations.cs
        │   │   │   ├── HexCommandOperationsFactoryService.cs
        │   │   │   ├── HexCommandOperationsFactoryServiceImpl.cs
        │   │   │   ├── HexCommandOperationsImpl.cs
        │   │   │   ├── HexPositionVM.cs
        │   │   │   ├── Integer64VM.cs
        │   │   │   ├── LocalSettingsDlg.xaml
        │   │   │   ├── LocalSettingsDlg.xaml.cs
        │   │   │   ├── LocalSettingsVM.cs
        │   │   │   ├── PositionKind.cs
        │   │   │   ├── PositionLengthVM.cs
        │   │   │   ├── PositionVM.cs
        │   │   │   ├── SelectDlg.xaml
        │   │   │   ├── SelectDlg.xaml.cs
        │   │   │   ├── SelectPositionLengthKind.cs
        │   │   │   ├── SelectVM.cs
        │   │   │   └── SettingsConstants.cs
        │   │   ├── ContextMenuCommands
        │   │   │   ├── BytesPerLineContextMenuEntry.cs
        │   │   │   ├── BytesPerLineSubContextMenuEntry.cs
        │   │   │   ├── Constants.cs
        │   │   │   ├── CopyAbsoluteFileOffsetContextMenuEntry.cs
        │   │   │   ├── CopyCSharpArrayContextMenuEntry.cs
        │   │   │   ├── CopyContextMenuEntry.cs
        │   │   │   ├── CopyFileOffsetContextMenuEntry.cs
        │   │   │   ├── CopyHexViewCommandTargetMenuItemBase.cs
        │   │   │   ├── CopyOffsetContextMenuEntry.cs
        │   │   │   ├── CopyRVAContextMenuEntry.cs
        │   │   │   ├── CopySpecialContextMenuEntry.cs
        │   │   │   ├── CopyTextContextMenuEntry.cs
        │   │   │   ├── CopyUInt16BigEndianContextMenuEntry.cs
        │   │   │   ├── CopyUInt16ContextMenuEntry.cs
        │   │   │   ├── CopyUInt32BigEndianContextMenuEntry.cs
        │   │   │   ├── CopyUInt32ContextMenuEntry.cs
        │   │   │   ├── CopyUInt64BigEndianContextMenuEntry.cs
        │   │   │   ├── CopyUInt64ContextMenuEntry.cs
        │   │   │   ├── CopyUnicodeStringContextMenuEntry.cs
        │   │   │   ├── CopyUtf8StringContextMenuEntry.cs
        │   │   │   ├── CopyValueContextMenuEntry.cs
        │   │   │   ├── CopyVisualBasicArrayContextMenuEntry.cs
        │   │   │   ├── DeleteContextMenuEntry.cs
        │   │   │   ├── EditEnumFieldCommand.cs
        │   │   │   ├── EditFieldCommand.cs
        │   │   │   ├── EditFieldCommandContext.cs
        │   │   │   ├── EditFieldCommandTargetMenuItemBase.cs
        │   │   │   ├── EditFieldConstants.cs
        │   │   │   ├── EditFieldCreatorCommand.cs
        │   │   │   ├── EditFlagsFieldCommand.cs
        │   │   │   ├── EditLocalSettingsContextMenuEntry.cs
        │   │   │   ├── FillSelectionContextMenuEntry.cs
        │   │   │   ├── FindCommandContextMenuEntry.cs
        │   │   │   ├── FollowFieldValueReferenceContextMenuEntry.cs
        │   │   │   ├── GoToCodeOrStructureContextMenuEntry.cs
        │   │   │   ├── GoToMetadataTableContextMenuEntry.cs
        │   │   │   ├── GoToPositionContextMenuEntry.cs
        │   │   │   ├── HexViewCommandTargetMenuItemBase.cs
        │   │   │   ├── HexViewCommandTargetMenuItemBase2.cs
        │   │   │   ├── HexViewContext.cs
        │   │   │   ├── IncrementalSearchForwardContextMenuEntry.cs
        │   │   │   ├── MyMenuItem.cs
        │   │   │   ├── PasteBlobContextMenuEntry.cs
        │   │   │   ├── PasteContextMenuEntry.cs
        │   │   │   ├── PasteHexViewCommandTargetMenuItemBase.cs
        │   │   │   ├── PasteSpecialContextMenuEntry.cs
        │   │   │   ├── PasteUnicodeString7BitEncodedLengthPrefixContextMenuEntry.cs
        │   │   │   ├── PasteUnicodeStringContextMenuEntry.cs
        │   │   │   ├── PasteUtf8String7BitEncodedLengthPrefixContextMenuEntry.cs
        │   │   │   ├── PasteUtf8StringContextMenuEntry.cs
        │   │   │   ├── RefreshContextMenuEntry.cs
        │   │   │   ├── SaveSelectionContextMenuEntry.cs
        │   │   │   ├── SelectContextMenuEntry.cs
        │   │   │   ├── SelectFileContextMenuEntry.cs
        │   │   │   ├── SelectNestedFileContextMenuEntry.cs
        │   │   │   ├── SelectSpecialContextMenuEntry.cs
        │   │   │   ├── SelectStructureContextMenuEntry.cs
        │   │   │   ├── ShowAllBytesContextMenuEntry.cs
        │   │   │   ├── ShowOnlySelectedBytesContextMenuEntry.cs
        │   │   │   ├── ValueFormatContextMenuEntry.cs
        │   │   │   └── ValueFormatSubContextMenuEntry.cs
        │   │   ├── DecimalByteValueFormatter.cs
        │   │   ├── DecimalInt16BigEndianValueFormatter.cs
        │   │   ├── DecimalInt16ValueFormatter.cs
        │   │   ├── DecimalInt32BigEndianValueFormatter.cs
        │   │   ├── DecimalInt32ValueFormatter.cs
        │   │   ├── DecimalInt64BigEndianValueFormatter.cs
        │   │   ├── DecimalInt64ValueFormatter.cs
        │   │   ├── DecimalSByteValueFormatter.cs
        │   │   ├── DecimalUInt16BigEndianValueFormatter.cs
        │   │   ├── DecimalUInt16ValueFormatter.cs
        │   │   ├── DecimalUInt32BigEndianValueFormatter.cs
        │   │   ├── DecimalUInt32ValueFormatter.cs
        │   │   ├── DecimalUInt64BigEndianValueFormatter.cs
        │   │   ├── DecimalUInt64ValueFormatter.cs
        │   │   ├── DoubleBigEndianValueFormatter.cs
        │   │   ├── DoubleValueFormatter.cs
        │   │   ├── Editor
        │   │   │   ├── ActiveColumnHighlighterService.cs
        │   │   │   ├── ActiveColumnHighlighterServiceProvider.cs
        │   │   │   ├── ActiveColumnHighlighterServiceProviderImpl.cs
        │   │   │   ├── ActiveColumnHighlighterWpfHexViewCreationListener.cs
        │   │   │   ├── BottomControlMarginProvider.cs
        │   │   │   ├── BottomRightCornerMargin.cs
        │   │   │   ├── BottomRightCornerMarginProvider.cs
        │   │   │   ├── ColumnLineSeparatorService.cs
        │   │   │   ├── ColumnLineSeparatorServiceProvider.cs
        │   │   │   ├── ColumnLineSeparatorServiceProviderImpl.cs
        │   │   │   ├── ColumnLineSeparatorWpfHexViewCreationListener.cs
        │   │   │   ├── CopyWpfHexViewCreationListener.cs
        │   │   │   ├── CurrentLineHighlighter.cs
        │   │   │   ├── CurrentLineHighlighterElement.cs
        │   │   │   ├── CurrentLineHighlighterWpfHexViewCreationListener.cs
        │   │   │   ├── CurrentValueHighlighter.cs
        │   │   │   ├── CurrentValueHighlighterHexViewTaggerProvider.cs
        │   │   │   ├── CurrentValueHighlighterProvider.cs
        │   │   │   ├── CurrentValueHighlighterProviderImpl.cs
        │   │   │   ├── CurrentValueHighlighterTagger.cs
        │   │   │   ├── DefaultHexEditorCommandInfoProvider.cs
        │   │   │   ├── DefaultHexMouseProcessor.cs
        │   │   │   ├── DefaultHexViewCommandTarget.cs
        │   │   │   ├── DefaultHexViewCommandTargetFilterProvider.cs
        │   │   │   ├── DefaultHexViewMouseProcessor.cs
        │   │   │   ├── GlyphMarginProvider.cs
        │   │   │   ├── HexAdornmentLayerCollection.cs
        │   │   │   ├── HexAdornmentLayerDefinitionService.cs
        │   │   │   ├── HexAdornmentLayerDefinitionServiceImpl.cs
        │   │   │   ├── HexAdornmentLayerElementImpl.cs
        │   │   │   ├── HexAdornmentLayerImpl.cs
        │   │   │   ├── HexCaretImpl.cs
        │   │   │   ├── HexCaretLayer.cs
        │   │   │   ├── HexContextMenuInitializer.cs
        │   │   │   ├── HexEditorFactoryServiceImpl.cs
        │   │   │   ├── HexEditorOptions.cs
        │   │   │   ├── HexEditorOptionsFactoryServiceImpl.cs
        │   │   │   ├── HexGlyphMargin.cs
        │   │   │   ├── HexGroups
        │   │   │   │   └── HexEditorGroupFactoryServiceImpl.cs
        │   │   │   ├── HexImageReferenceGlyphFactory.cs
        │   │   │   ├── HexImageReferenceGlyphFactoryProvider.cs
        │   │   │   ├── HexIntraTextAdornmentService.cs
        │   │   │   ├── HexIntraTextAdornmentServiceImpl.cs
        │   │   │   ├── HexIntraTextAdornmentServiceProvider.cs
        │   │   │   ├── HexIntraTextAdornmentServiceProviderImpl.cs
        │   │   │   ├── HexKeyProcessorCollection.cs
        │   │   │   ├── HexMarginContextMenuServiceImpl.cs
        │   │   │   ├── HexMarkerHelper.cs
        │   │   │   ├── HexMarkerService.cs
        │   │   │   ├── HexMarkerServiceWpfHexViewCreationListener.cs
        │   │   │   ├── HexMouseLocation.cs
        │   │   │   ├── HexMouseProcessorCollection.cs
        │   │   │   ├── HexPopupHelper.cs
        │   │   │   ├── HexPopupSpaceReservationAgent.cs
        │   │   │   ├── HexReferenceHandlerServiceImpl.cs
        │   │   │   ├── HexScrollMapFactoryServiceImpl.cs
        │   │   │   ├── HexScrollMapImpl.cs
        │   │   │   ├── HexSelectionExtensions.cs
        │   │   │   ├── HexSelectionImpl.cs
        │   │   │   ├── HexSelectionLayer.cs
        │   │   │   ├── HexSpaceReservationManagerImpl.cs
        │   │   │   ├── HexSpaceReservationStack.cs
        │   │   │   ├── HexSpaceReservationStackImpl.cs
        │   │   │   ├── HexSpaceReservationStackProvider.cs
        │   │   │   ├── HexSpaceReservationStackProviderImpl.cs
        │   │   │   ├── HexStructureInfoAggregatorFactoryImpl.cs
        │   │   │   ├── HexStructureInfoAggregatorImpl.cs
        │   │   │   ├── HexToolTipStructureSpanTagger.cs
        │   │   │   ├── HexToolTipStructureSpanTaggerProvider.cs
        │   │   │   ├── HexViewExtensions.cs
        │   │   │   ├── HexViewLineExtensions.cs
        │   │   │   ├── HexViewMouseProcessorCollection.cs
        │   │   │   ├── HexViewScrollerImpl.cs
        │   │   │   ├── HorizontalScrollBarContainerMargin.cs
        │   │   │   ├── HorizontalScrollBarContainerMarginProvider.cs
        │   │   │   ├── HorizontalScrollBarMargin.cs
        │   │   │   ├── HorizontalScrollBarMarginProvider.cs
        │   │   │   ├── IIntraTextAdornmentServiceSpaceNegotiatingAdornmentTagger.cs
        │   │   │   ├── IntraTextAdornmentServiceSpaceNegotiatingAdornmentTagger.cs
        │   │   │   ├── IntraTextAdornmentServiceSpaceNegotiatingAdornmentTaggerProv.cs
        │   │   │   ├── KeyboardWpfHexViewCreationListener.cs
        │   │   │   ├── LeftSelectionMargin.cs
        │   │   │   ├── LeftSelectionMarginProvider.cs
        │   │   │   ├── MetadataAndOrder.cs
        │   │   │   ├── MouseWpfHexViewCreationListener.cs
        │   │   │   ├── OffsetCursorProvider.cs
        │   │   │   ├── OffsetCursorProviderService.cs
        │   │   │   ├── OffsetCursorProviderServiceImpl.cs
        │   │   │   ├── OffsetHexCursorProvider.cs
        │   │   │   ├── OffsetHexCursorProviderFactory.cs
        │   │   │   ├── OffsetHexMouseProcessor.cs
        │   │   │   ├── OffsetHexMouseProcessorProvider.cs
        │   │   │   ├── RightControlMarginProvider.cs
        │   │   │   ├── Search
        │   │   │   │   ├── CommandTargetFilter.cs
        │   │   │   │   ├── CommandTargetFilterFocus.cs
        │   │   │   │   ├── CommandTargetFilterProvider.cs
        │   │   │   │   ├── CommandTargetFilterProviderFocus.cs
        │   │   │   │   ├── DataKindVM.cs
        │   │   │   │   ├── DataParser.cs
        │   │   │   │   ├── HexDataKind.cs
        │   │   │   │   ├── HexMarkerTagger.cs
        │   │   │   │   ├── HexMarkerTaggerProvider.cs
        │   │   │   │   ├── HexSearchServiceFactory.cs
        │   │   │   │   ├── HexSearchServiceFactoryImpl.cs
        │   │   │   │   ├── HexViewSearchService.cs
        │   │   │   │   ├── HexViewSearchServiceImpl.cs
        │   │   │   │   ├── HexViewSearchServiceProvider.cs
        │   │   │   │   ├── HexViewSearchServiceProviderImpl.cs
        │   │   │   │   ├── IHexMarkerListener.cs
        │   │   │   │   ├── NumberParser.cs
        │   │   │   │   ├── SearchControl.xaml
        │   │   │   │   ├── SearchControl.xaml.cs
        │   │   │   │   ├── SearchSettings.cs
        │   │   │   │   └── SearchSettingsImpl.cs
        │   │   │   ├── SelectionUtilities.cs
        │   │   │   ├── SpacerMargin.cs
        │   │   │   ├── SpacerMarginProvider.cs
        │   │   │   ├── TextLayer.cs
        │   │   │   ├── VerticalScrollBarContainerMarginProvider.cs
        │   │   │   ├── VerticalScrollBarMargin.cs
        │   │   │   ├── VerticalScrollBarMarginProvider.cs
        │   │   │   ├── WpfHexViewConstants.cs
        │   │   │   ├── WpfHexViewContainerMargin.cs
        │   │   │   ├── WpfHexViewHostImpl.cs
        │   │   │   ├── WpfHexViewImpl.cs
        │   │   │   ├── WpfHexViewLineCollectionImpl.cs
        │   │   │   ├── WpfHexViewMarginInfo.cs
        │   │   │   ├── WpfHexViewMarginProviderCollection.cs
        │   │   │   ├── WpfHexViewMarginProviderCollectionImpl.cs
        │   │   │   ├── WpfHexViewMarginProviderCollectionProvider.cs
        │   │   │   ├── WpfHexViewMarginProviderCollectionProviderImpl.cs
        │   │   │   ├── ZoomControlMargin.cs
        │   │   │   └── ZoomControlMarginProvider.cs
        │   │   ├── Files
        │   │   │   ├── DefaultHexStructureInfoProvider.cs
        │   │   │   ├── DefaultHexStructureInfoProviderFactory.cs
        │   │   │   ├── DnSpy
        │   │   │   │   ├── BufferToDocumentNodeService.cs
        │   │   │   │   ├── BufferToDocumentNodeServiceImpl.cs
        │   │   │   │   ├── DefaultHexFileStructureInfoProvider.cs
        │   │   │   │   ├── DefaultHexFileStructureInfoProviderFactory.cs
        │   │   │   │   ├── DotNetHexFileImageReferenceProvider.cs
        │   │   │   │   ├── DotNetHexFileStructureInfoProvider.cs
        │   │   │   │   ├── DotNetHexFileStructureInfoProviderFactory.cs
        │   │   │   │   ├── HexMethodReference.cs
        │   │   │   │   ├── HexReferenceConverterImpl.cs
        │   │   │   │   ├── ImageReferenceUtils.cs
        │   │   │   │   ├── ToolTipCreatorFactoryImpl.cs
        │   │   │   │   ├── ToolTipCreatorImpl.cs
        │   │   │   │   └── ToolTipObjectFactoryImpl.cs
        │   │   │   ├── DotNet
        │   │   │   │   ├── AssemblyRefTableRecordDataFactory.cs
        │   │   │   │   ├── AssemblyTableRecordDataFactory.cs
        │   │   │   │   ├── Bit7String.cs
        │   │   │   │   ├── BlobHeapImpl.cs
        │   │   │   │   ├── ConstantTableRecordDataFactory.cs
        │   │   │   │   ├── DeclSecurityTableRecordDataFactory.cs
        │   │   │   │   ├── DotNetCor20DataImpl.cs
        │   │   │   │   ├── DotNetEmbeddedResourceImpl.cs
        │   │   │   │   ├── DotNetHeadersImpl.cs
        │   │   │   │   ├── DotNetHeapsReader.cs
        │   │   │   │   ├── DotNetHexFileStructureInfoProvider.cs
        │   │   │   │   ├── DotNetHexFileStructureInfoProviderFactory.cs
        │   │   │   │   ├── DotNetMetadataHeaderDataImpl.cs
        │   │   │   │   ├── DotNetMetadataHeaderReader.cs
        │   │   │   │   ├── DotNetMetadataHeadersImpl.cs
        │   │   │   │   ├── DotNetMethodProviderImpl.cs
        │   │   │   │   ├── DotNetMultiFileResourceHeaderDataImpl.cs
        │   │   │   │   ├── DotNetMultiFileResourcesImpl.cs
        │   │   │   │   ├── DotNetResourceProviderImpl.cs
        │   │   │   │   ├── DotNetStorageStreamImpl.cs
        │   │   │   │   ├── DotNetStructureProvider.cs
        │   │   │   │   ├── DotNetStructureProviderFactory.cs
        │   │   │   │   ├── DotNetTableSizes.cs
        │   │   │   │   ├── ENCLogTableRecordDataFactory.cs
        │   │   │   │   ├── ENCMapTableRecordDataFactory.cs
        │   │   │   │   ├── EventTableRecordDataFactory.cs
        │   │   │   │   ├── ExportedTypeTableRecordDataFactory.cs
        │   │   │   │   ├── FatExceptionClauseImpl.cs
        │   │   │   │   ├── FatExceptionHandlerTableImpl.cs
        │   │   │   │   ├── FatMethodBodyImpl.cs
        │   │   │   │   ├── FatSectionImpl.cs
        │   │   │   │   ├── FieldRVATableRecordDataFactory.cs
        │   │   │   │   ├── FieldTableRecordDataFactory.cs
        │   │   │   │   ├── FileTableRecordDataFactory.cs
        │   │   │   │   ├── GUIDHeapImpl.cs
        │   │   │   │   ├── GenericParamTableRecordDataFactory.cs
        │   │   │   │   ├── HotHeapImpl.cs
        │   │   │   │   ├── IDotNetHeap.cs
        │   │   │   │   ├── ImplMapTableRecordDataFactory.cs
        │   │   │   │   ├── InvalidMethodBodyImpl.cs
        │   │   │   │   ├── LocalVariableTableRecordDataFactory.cs
        │   │   │   │   ├── ManifestResourceTableRecordDataFactory.cs
        │   │   │   │   ├── MethodBodyInfo.cs
        │   │   │   │   ├── MethodBodyInfoFlags.cs
        │   │   │   │   ├── MethodBodyReader.cs
        │   │   │   │   ├── MethodSemanticsTableRecordDataFactory.cs
        │   │   │   │   ├── MethodTableRecordDataFactory.cs
        │   │   │   │   ├── MultiResourceStructureProvider.cs
        │   │   │   │   ├── MultiResourceStructureProviderFactory.cs
        │   │   │   │   ├── NameUtils.cs
        │   │   │   │   ├── ParamTableRecordDataFactory.cs
        │   │   │   │   ├── PdbHeapImpl.cs
        │   │   │   │   ├── PdbStreamHeaderDataImpl.cs
        │   │   │   │   ├── PropertyTableRecordDataFactory.cs
        │   │   │   │   ├── SmallExceptionClauseImpl.cs
        │   │   │   │   ├── SmallExceptionHandlerTableImpl.cs
        │   │   │   │   ├── SmallSectionImpl.cs
        │   │   │   │   ├── StorageStreamHeader.cs
        │   │   │   │   ├── StringsHeapImpl.cs
        │   │   │   │   ├── TableRecordDataFactory.cs
        │   │   │   │   ├── TablesHeaderDataImpl.cs
        │   │   │   │   ├── TablesHeapImpl.cs
        │   │   │   │   ├── TinyMethodBodyImpl.cs
        │   │   │   │   ├── TypeDefTableRecordDataFactory.cs
        │   │   │   │   ├── USHeapImpl.cs
        │   │   │   │   ├── USString.cs
        │   │   │   │   └── UnknownHeapImpl.cs
        │   │   │   ├── HexBufferFileImpl.cs
        │   │   │   ├── HexBufferFileServiceFactoryImpl.cs
        │   │   │   ├── HexBufferFileServiceImpl.cs
        │   │   │   ├── HexFieldFormatterFactoryImpl.cs
        │   │   │   ├── HexFieldFormatterImpl.cs
        │   │   │   ├── HexFileStructureInfoServiceFactoryImpl.cs
        │   │   │   ├── HexFileStructureInfoServiceImpl.cs
        │   │   │   ├── NumberFormatter.cs
        │   │   │   ├── PE
        │   │   │   │   ├── DataDirectoryDataUtils.cs
        │   │   │   │   ├── ImageSectionHeader.cs
        │   │   │   │   ├── PeDosHeaderDataImpl.cs
        │   │   │   │   ├── PeFileHeaderDataImpl.cs
        │   │   │   │   ├── PeHeadersImpl.cs
        │   │   │   │   ├── PeHeadersReader.cs
        │   │   │   │   ├── PeHexFileStructureInfoProvider.cs
        │   │   │   │   ├── PeHexFileStructureInfoProviderFactory.cs
        │   │   │   │   ├── PeOptionalHeader32DataImpl.cs
        │   │   │   │   ├── PeOptionalHeader64DataImpl.cs
        │   │   │   │   ├── PeSectionDataImpl.cs
        │   │   │   │   ├── PeStructureProvider.cs
        │   │   │   │   └── PeStructureProviderFactory.cs
        │   │   │   ├── SpanData.cs
        │   │   │   ├── SpanDataCollection.cs
        │   │   │   └── ToolTips
        │   │   │       ├── HexToolTipContentCreatorFactoryImpl.cs
        │   │   │       └── HexToolTipContentCreatorImpl.cs
        │   │   ├── Formatting
        │   │   │   ├── FormattedHexSourceFactoryServiceImpl.cs
        │   │   │   ├── HexAndAdornmentSequencerFactoryServiceImpl.cs
        │   │   │   ├── HexAndAdornmentSequencerImpl.cs
        │   │   │   ├── HexFormattedLineImpl.cs
        │   │   │   ├── HexFormattedLineSourceImpl.cs
        │   │   │   ├── HexHtmlBuilder.cs
        │   │   │   ├── HexHtmlBuilderServiceImpl.cs
        │   │   │   ├── HexLinePart.cs
        │   │   │   ├── HexLinePartsCollection.cs
        │   │   │   ├── HexLinePartsTextSource.cs
        │   │   │   ├── HexLineTransformProvider.cs
        │   │   │   ├── HexLineTransformProviderService.cs
        │   │   │   ├── HexLineTransformProviderServiceImpl.cs
        │   │   │   ├── PhysicalLine.cs
        │   │   │   └── PhysicalLineCache.cs
        │   │   ├── HexAssemblyOffsetFormatter.cs
        │   │   ├── HexBufferFactoryServiceImpl.cs
        │   │   ├── HexBufferImpl.cs
        │   │   ├── HexBufferLineFormatterFactoryServiceImpl.cs
        │   │   ├── HexBufferLineFormatterImpl.cs
        │   │   ├── HexBufferLineImpl.cs
        │   │   ├── HexBufferStreamFactoryServiceImpl.cs
        │   │   ├── HexByteValueFormatter.cs
        │   │   ├── HexCSharpOffsetFormatter.cs
        │   │   ├── HexCachedBufferStreamImpl.cs
        │   │   ├── HexEditImpl.cs
        │   │   ├── HexEditor
        │   │   │   ├── AdvancedAppSettingsPage.cs
        │   │   │   ├── AppSettingsPageContainer.cs
        │   │   │   ├── AppSettingsPageProvider.cs
        │   │   │   ├── GeneralAppSettingsPage.cs
        │   │   │   ├── HexEditorOptions.cs
        │   │   │   ├── HexEditorOptionsDefinitions.cs
        │   │   │   ├── HexEditorOptionsService.cs
        │   │   │   ├── HexEditorOptionsServiceImpl.cs
        │   │   │   ├── HexViewOptionsGroupNameProviderImpl.cs
        │   │   │   ├── MainAppSettingsPage.cs
        │   │   │   ├── ScrollBarsAppSettingsPage.cs
        │   │   │   └── TagOptionDefinitionProviderImpl.cs
        │   │   ├── HexGroups
        │   │   │   ├── HexEditorFactoryServiceListenerImpl.cs
        │   │   │   ├── HexViewGroupOption.cs
        │   │   │   ├── HexViewGroupOptionCollection.cs
        │   │   │   ├── HexViewOptionsGroupImpl.cs
        │   │   │   ├── HexViewOptionsGroupServiceImpl.cs
        │   │   │   └── OptionsStorage.cs
        │   │   ├── HexInt16BigEndianValueFormatter.cs
        │   │   ├── HexInt16ValueFormatter.cs
        │   │   ├── HexInt32BigEndianValueFormatter.cs
        │   │   ├── HexInt32ValueFormatter.cs
        │   │   ├── HexInt64BigEndianValueFormatter.cs
        │   │   ├── HexInt64ValueFormatter.cs
        │   │   ├── HexOffsetFormatter.cs
        │   │   ├── HexProcessSimpleBufferStream.cs
        │   │   ├── HexSByteValueFormatter.cs
        │   │   ├── HexUInt16BigEndianValueFormatter.cs
        │   │   ├── HexUInt16ValueFormatter.cs
        │   │   ├── HexUInt32BigEndianValueFormatter.cs
        │   │   ├── HexUInt32ValueFormatter.cs
        │   │   ├── HexUInt64BigEndianValueFormatter.cs
        │   │   ├── HexUInt64ValueFormatter.cs
        │   │   ├── HexValueFormatter.cs
        │   │   ├── HexValueFormatterFlags.cs
        │   │   ├── HexVersionImpl.cs
        │   │   ├── HexVisualBasicOffsetFormatter.cs
        │   │   ├── Intellisense
        │   │   │   ├── DnSpy
        │   │   │   │   ├── QuickInfoCommandTargetFilter.cs
        │   │   │   │   └── QuickInfoCommandTargetFilterProvider.cs
        │   │   │   ├── HexIntellisenseControllerService.cs
        │   │   │   ├── HexIntellisensePresenterFactoryService.cs
        │   │   │   ├── HexIntellisensePresenterFactoryServiceImpl.cs
        │   │   │   ├── HexIntellisenseSessionStackImpl.cs
        │   │   │   ├── HexIntellisenseSessionStackMapServiceImpl.cs
        │   │   │   ├── HexQuickInfoBrokerImpl.cs
        │   │   │   ├── HexQuickInfoController.cs
        │   │   │   ├── HexQuickInfoControllerProvider.cs
        │   │   │   ├── HexQuickInfoPresenter.cs
        │   │   │   ├── HexQuickInfoPresenterBase.cs
        │   │   │   ├── HexQuickInfoPresenterControl.xaml
        │   │   │   ├── HexQuickInfoPresenterControl.xaml.cs
        │   │   │   ├── HexQuickInfoPresenterProvider.cs
        │   │   │   ├── HexQuickInfoSessionImpl.cs
        │   │   │   ├── HexSpaceReservationQuickInfoPresenter.cs
        │   │   │   ├── HexToolTipInfo.cs
        │   │   │   ├── HexToolTipInfoCollection.cs
        │   │   │   ├── HexToolTipService.cs
        │   │   │   ├── HexToolTipServiceFactory.cs
        │   │   │   ├── HexToolTipServiceFactoryImpl.cs
        │   │   │   ├── HexToolTipServiceImpl.cs
        │   │   │   ├── HexToolTipServiceQuickInfoSource.cs
        │   │   │   ├── HexToolTipServiceQuickInfoSourceProvider.cs
        │   │   │   ├── HexToolTipServiceTagger.cs
        │   │   │   ├── HexToolTipServiceViewTaggerProvider.cs
        │   │   │   ├── IHexToolTipServiceTagger.cs
        │   │   │   └── SpaceReservationManagerDefinitions.cs
        │   │   ├── MEF
        │   │   │   ├── IAdornmentLayersMetadata.cs
        │   │   │   ├── IDeferrableTextViewRoleMetadata.cs
        │   │   │   ├── IGlyphMarginMetadata.cs
        │   │   │   ├── IGlyphMetadata.cs
        │   │   │   ├── IGlyphMouseProcessorProviderMetadata.cs
        │   │   │   ├── IMarginContextMenuHandlerProviderMetadata.cs
        │   │   │   ├── INameAndReplacesMetadata.cs
        │   │   │   ├── INamedTaggerMetadata.cs
        │   │   │   ├── IOrderableTextViewRoleMetadata.cs
        │   │   │   ├── ITaggerMetadata.cs
        │   │   │   ├── ITextViewRoleMetadata.cs
        │   │   │   ├── IViewTaggerMetadata.cs
        │   │   │   └── IWpfHexViewMarginMetadata.cs
        │   │   ├── NativeMethods.cs
        │   │   ├── NormalizedHexBufferSpanCollectionExtensions.cs
        │   │   ├── OnlyHexOffsetFormatter.cs
        │   │   ├── Operations
        │   │   │   ├── BigEndianUtf16StringHexSearchService.cs
        │   │   │   ├── ByteHexSearchService.cs
        │   │   │   ├── ClipboardUtils.cs
        │   │   │   ├── HexEditorOperationsFactoryServiceImpl.cs
        │   │   │   ├── HexEditorOperationsImpl.cs
        │   │   │   ├── HexSearchServiceImpl.cs
        │   │   │   ├── HexSearchServiceProviderImpl.cs
        │   │   │   ├── MDUtils.cs
        │   │   │   ├── StringHexSearchService.cs
        │   │   │   ├── Utf16StringHexSearchService.cs
        │   │   │   └── Utf8StringHexSearchService.cs
        │   │   ├── Settings
        │   │   │   ├── AdvancedAppSettingsPageBase.cs
        │   │   │   ├── CommonEditorOptions.cs
        │   │   │   ├── GeneralAppSettingsPageBase.cs
        │   │   │   └── ScrollBarsAppSettingsPageBase.cs
        │   │   ├── SingleBigEndianValueFormatter.cs
        │   │   ├── SingleValueFormatter.cs
        │   │   └── Tagging
        │   │       ├── DefaultTagger.cs
        │   │       ├── DefaultTaggerProvider.cs
        │   │       ├── HexBufferTagAggregator.cs
        │   │       ├── HexBufferTagAggregatorFactoryServiceImpl.cs
        │   │       ├── HexClassificationTags.cs
        │   │       ├── HexTaggerFactory.cs
        │   │       ├── HexViewTagAggregator.cs
        │   │       ├── HexViewTagAggregatorFactoryServiceImpl.cs
        │   │       └── TagAggregator.cs
        │   ├── IWshRuntimeLibrary
        │   │   ├── IWshShell.cs
        │   │   ├── IWshShell2.cs
        │   │   ├── IWshShell3.cs
        │   │   ├── IWshShortcut.cs
        │   │   └── WshShell.cs
        │   ├── Images
        │   │   ├── DefaultImageSourceInfoProvider.cs
        │   │   ├── DotNetImageService.cs
        │   │   ├── DsImageBitmapScalingModeConverter.cs
        │   │   ├── DsImageConverter.cs
        │   │   ├── ImageReferenceHelper.cs
        │   │   ├── ImageService.cs
        │   │   ├── ThemedImageCreator.cs
        │   │   └── dnspy.ico
        │   ├── Language
        │   │   └── Intellisense
        │   │       ├── CollectionBooleanToVisibilityConverter.cs
        │   │       ├── CompletionBroker.cs
        │   │       ├── CompletionCollectionVM.cs
        │   │       ├── CompletionIconVM.cs
        │   │       ├── CompletionPresenter.cs
        │   │       ├── CompletionPresenterControl.xaml
        │   │       ├── CompletionPresenterControl.xaml.cs
        │   │       ├── CompletionPresenterProvider.cs
        │   │       ├── CompletionSession.cs
        │   │       ├── CompletionSessionCommandTargetFilter.cs
        │   │       ├── CompletionSuffixTextClassifier.cs
        │   │       ├── CompletionSuffixTextClassifierProvider.cs
        │   │       ├── CompletionTextConverter.cs
        │   │       ├── CompletionTextElementProvider.cs
        │   │       ├── CompletionTextElementProviderService.cs
        │   │       ├── CompletionVM.cs
        │   │       ├── ContentTypeDefinitions.cs
        │   │       ├── CurrentLineSpaceReservationAgent.cs
        │   │       ├── CurrentLineSpaceReservationService.cs
        │   │       ├── FilterMatchCompletionClassifier.cs
        │   │       ├── FilterMatchCompletionClassifierProvider.cs
        │   │       ├── FilterToolTipConverter.cs
        │   │       ├── FilterVM.cs
        │   │       ├── ICompletionTextElementProvider.cs
        │   │       ├── ICompletionTextElementProviderService.cs
        │   │       ├── ICurrentLineSpaceReservationService.cs
        │   │       ├── IIntellisensePresenterFactoryService.cs
        │   │       ├── IntellisenseControllerService.cs
        │   │       ├── IntellisensePresenterFactoryService.cs
        │   │       ├── IntellisenseSessionHelper.cs
        │   │       ├── IntellisenseSessionStack.cs
        │   │       ├── IntellisenseSessionStackMapService.cs
        │   │       ├── PresenterMouseProcessor.cs
        │   │       ├── PresenterMouseProcessorProvider.cs
        │   │       ├── QuickInfoBroker.cs
        │   │       ├── QuickInfoController.cs
        │   │       ├── QuickInfoControllerProvider.cs
        │   │       ├── QuickInfoPresenter.cs
        │   │       ├── QuickInfoPresenterBase.cs
        │   │       ├── QuickInfoPresenterControl.xaml
        │   │       ├── QuickInfoPresenterControl.xaml.cs
        │   │       ├── QuickInfoPresenterProvider.cs
        │   │       ├── QuickInfoSession.cs
        │   │       ├── SignatureHelpBroker.cs
        │   │       ├── SignatureHelpCurrentParameterTagger.cs
        │   │       ├── SignatureHelpCurrentParameterTaggerEx.cs
        │   │       ├── SignatureHelpCurrentParameterTaggerProvider.cs
        │   │       ├── SignatureHelpPresenter.cs
        │   │       ├── SignatureHelpPresenterControl.xaml
        │   │       ├── SignatureHelpPresenterControl.xaml.cs
        │   │       ├── SignatureHelpPresenterProvider.cs
        │   │       ├── SignatureHelpSession.cs
        │   │       ├── SpaceReservationManagerDefinitions.cs
        │   │       ├── SpaceReservationQuickInfoPresenter.cs
        │   │       ├── TrackingSpanHelpers.cs
        │   │       └── WpfUtils.cs
        │   ├── MVVM
        │   │   └── InitializeDataTemplateContextMenu.cs
        │   ├── MainApp
        │   │   ├── AboutHelpers.cs
        │   │   ├── AboutScreenDocumentTabContent.cs
        │   │   ├── AboutScreenDocumentTabContentFactory.cs
        │   │   ├── AboutScreenMenuItem.cs
        │   │   ├── App.xaml
        │   │   ├── App.xaml.cs
        │   │   ├── AppCommandLineArgs.cs
        │   │   ├── AppCommandLineArgsHandler.cs
        │   │   ├── AppSettings.cs
        │   │   ├── AppSettingsImpl.cs
        │   │   ├── AppStatusBar.cs
        │   │   ├── AppToolBar.cs
        │   │   ├── AppWindow.cs
        │   │   ├── AskDlg.xaml
        │   │   ├── AskDlg.xaml.cs
        │   │   ├── AskVM.cs
        │   │   ├── BGJitUtils.cs
        │   │   ├── CachedMefInfo.cs
        │   │   ├── CloseAllTabGroupsButThisCtxMenuCommand.cs
        │   │   ├── CloseAllTabsTWCtxMenuCommand.cs
        │   │   ├── CloseTabGroupCtxMenuCommand.cs
        │   │   ├── CmdConstants.cs
        │   │   ├── CollapseTreeViewCommand.cs
        │   │   ├── Constants.cs
        │   │   ├── CtxMenuToolWindowGroupCommand.cs
        │   │   ├── DocumentTreeViewWindowContent.cs
        │   │   ├── DocumentTreeViewWindowContentProvider.cs
        │   │   ├── DsLoaderControl.xaml
        │   │   ├── DsLoaderControl.xaml.cs
        │   │   ├── DsLoaderService.cs
        │   │   ├── FullScreenCommand.cs
        │   │   ├── FullScreenInit.cs
        │   │   ├── FullScreenToolbarCommand.cs
        │   │   ├── HideTWCtxMenuCommand.cs
        │   │   ├── IDsLoaderContentProvider.cs
        │   │   ├── IDsLoaderService.cs
        │   │   ├── LanguageComboBoxToolbarCommand.cs
        │   │   ├── MainMenuToolbarCommand.cs
        │   │   ├── MainWindow.xaml
        │   │   ├── MainWindow.xaml.cs
        │   │   ├── MainWindowControl.cs
        │   │   ├── MainWindowControlState.cs
        │   │   ├── MenuFileExitCommand.cs
        │   │   ├── MergeAllTabGroupsCtxMenuCommand.cs
        │   │   ├── MessageBoxService.cs
        │   │   ├── MessageBoxServiceLoader.cs
        │   │   ├── MoveAllToNextTabGroupCtxMenuCommand.cs
        │   │   ├── MoveAllToPreviousTabGroupCtxMenuCommand.cs
        │   │   ├── MoveGroupTWBottomCtxMenuCommand.cs
        │   │   ├── MoveGroupTWCtxMenuCommand.cs
        │   │   ├── MoveGroupTWLeftCtxMenuCommand.cs
        │   │   ├── MoveGroupTWRightCtxMenuCommand.cs
        │   │   ├── MoveGroupTWTopCtxMenuCommand.cs
        │   │   ├── MoveTWBottomCtxMenuCommand.cs
        │   │   ├── MoveTWCtxMenuCommand.cs
        │   │   ├── MoveTWLeftCtxMenuCommand.cs
        │   │   ├── MoveTWRightCtxMenuCommand.cs
        │   │   ├── MoveTWTopCtxMenuCommand.cs
        │   │   ├── MoveTabGroupAfterNextTabGroupCtxMenuCommand.cs
        │   │   ├── MoveTabGroupBeforePreviousTabGroupCtxMenuCommand.cs
        │   │   ├── MoveToNextTabGroupCtxMenuCommand.cs
        │   │   ├── MoveToPreviousTabGroupCtxMenuCommand.cs
        │   │   ├── MsgBoxDlg.xaml
        │   │   ├── MsgBoxDlg.xaml.cs
        │   │   ├── MsgBoxVM.cs
        │   │   ├── NetCoreAssemblyLoader.cs
        │   │   ├── NewHorizontalTabGroupCtxMenuCommand.cs
        │   │   ├── NewVerticalTabGroupCtxMenuCommand.cs
        │   │   ├── OpenIssuesUrlCommand.cs
        │   │   ├── OpenLatestBuildUrlCommand.cs
        │   │   ├── OpenReleasesUrlCommand.cs
        │   │   ├── OpenSourceCodeUrlCommand.cs
        │   │   ├── OpenWikiUrlCommand.cs
        │   │   ├── ResourceManagerTokenCacheImpl.cs
        │   │   ├── SavedWindowState.cs
        │   │   ├── SavedWindowStateRestorer.cs
        │   │   ├── Settings
        │   │   │   ├── EnvironmentAppSettingsPageContainer.cs
        │   │   │   ├── FontAndColorOptionsVM.cs
        │   │   │   ├── FontAppSettingsPage.cs
        │   │   │   ├── FontAppSettingsPageOptions.cs
        │   │   │   ├── FontAppSettingsPageProvider.cs
        │   │   │   ├── FontCollection.cs
        │   │   │   ├── FontFamilyVM.cs
        │   │   │   ├── FontFamilyVMConverter.cs
        │   │   │   ├── GeneralAppSettingsPage.cs
        │   │   │   ├── GeneralAppSettingsPageProvider.cs
        │   │   │   ├── IWindowsExplorerIntegrationService.cs
        │   │   │   ├── ThemeVM.cs
        │   │   │   └── WindowsExplorerIntegrationService.cs
        │   │   ├── ShowDocumentTreeViewCommand.cs
        │   │   ├── ShowDocumentTreeViewCommandLoader.cs
        │   │   ├── StartUpClass.cs
        │   │   ├── ToolWindowContentState.cs
        │   │   ├── ToolWindowGroupContext.cs
        │   │   ├── ToolWindowGroupState.cs
        │   │   ├── ToolWindowUIState.cs
        │   │   ├── UseHorizontalTabGroupsCtxMenuCommand.cs
        │   │   ├── UseVerticalTabGroupsCtxMenuCommand.cs
        │   │   └── WindowLoader.cs
        │   ├── Menus
        │   │   ├── ContextMenuProvider.cs
        │   │   ├── EditMenu.cs
        │   │   ├── FileMenu.cs
        │   │   ├── HelpMenu.cs
        │   │   ├── MenuItemContext.cs
        │   │   ├── MenuItemGroupMD.cs
        │   │   ├── MenuItemMD.cs
        │   │   ├── MenuMD.cs
        │   │   ├── MenuService.cs
        │   │   ├── MenuWpfFocusChecker.cs
        │   │   ├── ViewMenu.cs
        │   │   └── WindowMenu.cs
        │   ├── Metadata
        │   │   └── ModuleIdProvider.cs
        │   ├── Microsoft
        │   │   └── CodeAnalysis
        │   │       └── EmbeddedAttribute.cs
        │   ├── Output
        │   │   ├── CachedWriter.cs
        │   │   ├── ClearAllOutputEditorCtxMenuCommand.cs
        │   │   ├── CopyOutputEditorCtxMenuCommand.cs
        │   │   ├── DefaultOutputOptions.cs
        │   │   ├── IOutputContent.cs
        │   │   ├── IOutputServiceInternal.cs
        │   │   ├── IOutputServiceSettings.cs
        │   │   ├── LogEditorCtxMenuCommand.cs
        │   │   ├── LogEditorCtxMenuContext.cs
        │   │   ├── NotPresentOutputWriter.cs
        │   │   ├── NullOutputTextPane.cs
        │   │   ├── OutputBufferVM.cs
        │   │   ├── OutputCommands.cs
        │   │   ├── OutputContent.cs
        │   │   ├── OutputControl.xaml
        │   │   ├── OutputControl.xaml.cs
        │   │   ├── OutputService.cs
        │   │   ├── OutputServiceSettings.cs
        │   │   ├── OutputServiceSettingsImpl.cs
        │   │   ├── OutputToolWindowContent.cs
        │   │   ├── OutputToolWindowContentProvider.cs
        │   │   ├── Settings
        │   │   │   ├── AdvancedAppSettingsPage.cs
        │   │   │   ├── AppSettingsPageContainer.cs
        │   │   │   ├── AppSettingsPageProvider.cs
        │   │   │   ├── ContentTypeOptionDefinitionProvider.cs
        │   │   │   ├── GeneralAppSettingsPage.cs
        │   │   │   ├── IOutputWindowOptions.cs
        │   │   │   ├── IOutputWindowOptionsService.cs
        │   │   │   ├── OptionChangedEventArgs.cs
        │   │   │   ├── OutputWindowOptions.cs
        │   │   │   ├── OutputWindowOptionsService.cs
        │   │   │   ├── ScrollBarsAppSettingsPage.cs
        │   │   │   ├── TabsAppSettingsPage.cs
        │   │   │   └── TextViewOptionsGroupNameProvider.cs
        │   │   ├── ShowCSharpInteractiveCommand.cs
        │   │   ├── ShowOutputWindowCommandLoader.cs
        │   │   ├── ShowTimestampsEditorOptionDefinition.cs
        │   │   ├── TextAppearanceCategoryDefinitions.cs
        │   │   ├── ThemeFontSettingsDefinitions.cs
        │   │   ├── TimestampDateTimeFormatEditorOptionDefinition.cs
        │   │   ├── ToggleShowLineNumbersOutputEditorCtxMenuCommand.cs
        │   │   ├── ToggleShowTimestampsOutputEditorCtxMenuCommand.cs
        │   │   └── ToggleWordWrapOutputEditorCtxMenuCommand.cs
        │   ├── Properties
        │   │   ├── AssemblyInfo.cs
        │   │   ├── dnSpy
        │   │   │   └── Resources.resources
        │   │   └── dnSpy_Resources.cs
        │   ├── Scripting
        │   │   └── ServiceLocator.cs
        │   ├── Search
        │   │   ├── AppCommandLineArgsHandler.cs
        │   │   ├── BooleanToThicknessConverter.cs
        │   │   ├── CaseSensitiveCtxMenuCommand.cs
        │   │   ├── ContentTypeDefinitions.cs
        │   │   ├── DecompileResourcesCtxMenuCommand.cs
        │   │   ├── DocumentSearcher.cs
        │   │   ├── DocumentSearcherProvider.cs
        │   │   ├── ErrorMessage.cs
        │   │   ├── FilterSearcher.cs
        │   │   ├── FilterSearcherOptions.cs
        │   │   ├── FrameworkFileUtils.cs
        │   │   ├── ISearchService.cs
        │   │   ├── ISearchSettings.cs
        │   │   ├── MatchAnyCtxMenuCommand.cs
        │   │   ├── MatchWholeWordsCtxMenuCommand.cs
        │   │   ├── MessageSearchResult.cs
        │   │   ├── OpenReferenceCtxMenuCommand.cs
        │   │   ├── OpenReferenceCtxMenuCommandBase.cs
        │   │   ├── OpenReferenceNewTabCtxMenuCommand.cs
        │   │   ├── SearchAssembliesMenuItemCommand.cs
        │   │   ├── SearchAssembliesToolBarButtonCommand.cs
        │   │   ├── SearchCommandLoader.cs
        │   │   ├── SearchControl.xaml
        │   │   ├── SearchControl.xaml.cs
        │   │   ├── SearchControlVM.cs
        │   │   ├── SearchFrameworkAssembliesCtxMenuCommand.cs
        │   │   ├── SearchLocation.cs
        │   │   ├── SearchResult.cs
        │   │   ├── SearchResultContext.cs
        │   │   ├── SearchResult_Comparer.cs
        │   │   ├── SearchService.cs
        │   │   ├── SearchSettings.cs
        │   │   ├── SearchSettingsImpl.cs
        │   │   ├── SearchToolWindowContent.cs
        │   │   ├── SearchToolWindowContentProvider.cs
        │   │   ├── SearchType.cs
        │   │   ├── SearchTypeVM.cs
        │   │   ├── SyntaxHighlightCtxMenuCommand.cs
        │   │   └── TooManyResultsException.cs
        │   ├── Settings
        │   │   ├── AppearanceCategory
        │   │   │   ├── FontAndColorOptionsImpl.cs
        │   │   │   ├── FontAndColorOptionsProviderImpl.cs
        │   │   │   ├── ITextAppearanceCategory.cs
        │   │   │   ├── ITextAppearanceCategoryService.cs
        │   │   │   ├── TextAppearanceCategory.cs
        │   │   │   ├── TextAppearanceCategoryDefinitions.cs
        │   │   │   └── TextAppearanceCategoryService.cs
        │   │   ├── Dialog
        │   │   │   ├── AppRefreshSettings.cs
        │   │   │   ├── AppSettingsDlg.xaml
        │   │   │   ├── AppSettingsDlg.xaml.cs
        │   │   │   ├── AppSettingsPageVM.cs
        │   │   │   ├── AppSettingsSearchTextClassifier.cs
        │   │   │   ├── AppSettingsSearchTextClassifierProvider.cs
        │   │   │   ├── AppSettingsService.cs
        │   │   │   ├── AppSettingsTextClassifierContext.cs
        │   │   │   ├── AppSettingsTreeViewNodeClassifierContext.cs
        │   │   │   ├── AppSettingsTreeViewNodeSearchTextClassifier.cs
        │   │   │   ├── AppSettingsTreeViewNodeSearchTextClassifierProvider.cs
        │   │   │   ├── ContentConverterPresenter.cs
        │   │   │   ├── ContentConverterProperties.cs
        │   │   │   ├── ContentTypeDefinitions.cs
        │   │   │   ├── IContentConverter.cs
        │   │   │   ├── IPageUIObjectLoader.cs
        │   │   │   ├── PageContext.cs
        │   │   │   ├── SearchMatcher.cs
        │   │   │   ├── SettingsAppCommandLineArgsHandler.cs
        │   │   │   ├── ShowAppSettingsDialog.cs
        │   │   │   ├── ShowOptionsCommand.cs
        │   │   │   └── UIHelpers.cs
        │   │   ├── Fonts
        │   │   │   ├── DefaultFontInfo.cs
        │   │   │   ├── FontSettingsCreatedEventArgs.cs
        │   │   │   ├── FontSettingsData.cs
        │   │   │   ├── FontSettingsImpl.cs
        │   │   │   ├── ThemeFontSettingsData.cs
        │   │   │   ├── ThemeFontSettingsDefinitions.cs
        │   │   │   ├── ThemeFontSettingsImpl.cs
        │   │   │   ├── ThemeFontSettingsSerializer.cs
        │   │   │   ├── ThemeFontSettingsSerializerImpl.cs
        │   │   │   └── ThemeFontSettingsServiceImpl.cs
        │   │   ├── SectionAttributes.cs
        │   │   ├── SettingsSection.cs
        │   │   ├── SettingsSectionProvider.cs
        │   │   ├── SettingsService.cs
        │   │   ├── SettingsService2.cs
        │   │   ├── SettingsServiceFactory.cs
        │   │   ├── XmlSettingsConstants.cs
        │   │   ├── XmlSettingsReader.cs
        │   │   ├── XmlSettingsWriter.cs
        │   │   └── XmlUtils.cs
        │   ├── System
        │   │   └── Runtime
        │   │       └── CompilerServices
        │   │           ├── NullableAttribute.cs
        │   │           ├── NullableContextAttribute.cs
        │   │           └── NullablePublicOnlyAttribute.cs
        │   ├── Tabs
        │   │   ├── TabElementZoomer.cs
        │   │   ├── TabGroup.cs
        │   │   ├── TabGroupService.cs
        │   │   ├── TabGroupState.cs
        │   │   ├── TabItemImpl.cs
        │   │   ├── TabService.cs
        │   │   ├── TabServiceProvider.cs
        │   │   └── TabUtils.cs
        │   ├── Text
        │   │   ├── Adornments
        │   │   │   ├── ToolTipProvider.cs
        │   │   │   └── ToolTipProviderFactory.cs
        │   │   ├── AvalonEdit
        │   │   │   ├── CharRope.cs
        │   │   │   ├── DocumentLine.cs
        │   │   │   ├── DocumentLineTree.cs
        │   │   │   ├── FunctionNode.cs
        │   │   │   ├── ITextSource.cs
        │   │   │   ├── ImmutableStack.cs
        │   │   │   ├── LineManager.cs
        │   │   │   ├── NewLineFinder.cs
        │   │   │   ├── Rope.cs
        │   │   │   ├── RopeNode.cs
        │   │   │   ├── RopeTextSource.cs
        │   │   │   ├── SimpleSegment.cs
        │   │   │   ├── StringTextSource.cs
        │   │   │   └── TextDocument.cs
        │   │   ├── CachedColorsList.cs
        │   │   ├── CachedColorsListTagger.cs
        │   │   ├── CachedColorsListTaggerProvider.cs
        │   │   ├── Classification
        │   │   │   ├── CategoryClassificationFormatMap.cs
        │   │   │   ├── CategoryEditorFormatMap.cs
        │   │   │   ├── CategoryEditorFormatMapUpdater.cs
        │   │   │   ├── ClassificationFontUtils.cs
        │   │   │   ├── ClassificationFormatMapService.cs
        │   │   │   ├── ClassificationFormatMapServiceImpl.cs
        │   │   │   ├── ClassificationType.cs
        │   │   │   ├── ClassificationTypeRegistryService.cs
        │   │   │   ├── ClassifierAggregator.cs
        │   │   │   ├── ClassifierAggregatorBase.cs
        │   │   │   ├── ClassifierAggregatorService.cs
        │   │   │   ├── ClassifierTagger.cs
        │   │   │   ├── ClassifierTaggerProvider.cs
        │   │   │   ├── DefaultTextClassifier.cs
        │   │   │   ├── DefaultTextClassifierProvider.cs
        │   │   │   ├── EditorFormatDefinitionExtensions.cs
        │   │   │   ├── EditorFormatDefinitionService.cs
        │   │   │   ├── EditorFormatMapService.cs
        │   │   │   ├── EditorFormatMapServiceImpl.cs
        │   │   │   ├── IEditorFormatDefinitionService.cs
        │   │   │   ├── NullClassifier.cs
        │   │   │   ├── TextClassifierAggregator.cs
        │   │   │   ├── TextClassifierAggregatorService.cs
        │   │   │   ├── TextElementProvider.cs
        │   │   │   ├── TextViewClassificationFormatMap.cs
        │   │   │   ├── TextViewEditorFormatMap.cs
        │   │   │   ├── ThemeClassificationFormatDefinitions.cs
        │   │   │   ├── ThemeClassificationTypeService.cs
        │   │   │   ├── ViewClassificationFormatMap.cs
        │   │   │   ├── ViewClassifierAggregator.cs
        │   │   │   ├── ViewClassifierAggregatorService.cs
        │   │   │   └── ViewEditorFormatMap.cs
        │   │   ├── CodeEditor
        │   │   │   ├── AdvancedAppSettingsPage.cs
        │   │   │   ├── AppSettingsPageContainer.cs
        │   │   │   ├── AppSettingsPageProvider.cs
        │   │   │   ├── CodeEditorOptions.cs
        │   │   │   ├── CodeEditorOptionsService.cs
        │   │   │   ├── ContentTypeOptionDefinitionProvider.cs
        │   │   │   ├── GeneralAppSettingsPage.cs
        │   │   │   ├── ICodeEditorOptions.cs
        │   │   │   ├── ICodeEditorOptionsService.cs
        │   │   │   ├── LanguageAppSettingsPage.cs
        │   │   │   ├── ScrollBarsAppSettingsPage.cs
        │   │   │   ├── TabsAppSettingsPage.cs
        │   │   │   └── TextViewOptionsGroupNameProvider.cs
        │   │   ├── ColorUtils.cs
        │   │   ├── ContentType.cs
        │   │   ├── ContentTypeDefinitions.cs
        │   │   ├── ContentTypeExtensions.cs
        │   │   ├── ContentTypeRegistryService.cs
        │   │   ├── ContentTypeRegistryServiceExtensions.cs
        │   │   ├── Editor
        │   │   │   ├── AdornmentLayer.cs
        │   │   │   ├── AdornmentLayerCollection.cs
        │   │   │   ├── AdornmentLayerDefinitionService.cs
        │   │   │   ├── AdornmentLayerElement.cs
        │   │   │   ├── AllowBoxSelectionEditorOptionDefinition.cs
        │   │   │   ├── BlockStructureLineKindEditorOptionDefinition.cs
        │   │   │   ├── BlockStructureService.cs
        │   │   │   ├── BlockStructureServiceProvider.cs
        │   │   │   ├── BottomControlMarginProvider.cs
        │   │   │   ├── BottomRightCornerMargin.cs
        │   │   │   ├── BottomRightCornerMarginProvider.cs
        │   │   │   ├── BoxSelectionHelper.cs
        │   │   │   ├── BraceMatchingEditorOptionDefinition.cs
        │   │   │   ├── CachedTextColorsCollectionBuilder.cs
        │   │   │   ├── CanChangeOverwriteModeEditorOptionDefinition.cs
        │   │   │   ├── CanChangeUseVisibleWhitespaceEditorOptionDefinition.cs
        │   │   │   ├── CanChangeWordWrapStyleEditorOptionDefinition.cs
        │   │   │   ├── CodeEditor.cs
        │   │   │   ├── CodeEditorProvider.cs
        │   │   │   ├── CommandTextChangedState.cs
        │   │   │   ├── CommonGuidObjectsProvider.cs
        │   │   │   ├── CompressEmptyOrWhitespaceLinesEditorOptionDefinition.cs
        │   │   │   ├── CompressNonLetterLinesEditorOptionDefinition.cs
        │   │   │   ├── ContextMenuInitializer.cs
        │   │   │   ├── CopyWpfTextViewCreationListener.cs
        │   │   │   ├── CurrentLineHighlighter.cs
        │   │   │   ├── CurrentLineHighlighterElement.cs
        │   │   │   ├── CurrentLineHighlighterWpfTextViewCreationListener.cs
        │   │   │   ├── CustomLineNumberMarginImpl.cs
        │   │   │   ├── CustomLineNumberMarginProvider.cs
        │   │   │   ├── DefaultMouseProcessor.cs
        │   │   │   ├── DefaultSmartIndent.cs
        │   │   │   ├── DefaultTextEditorCommandInfoProvider.cs
        │   │   │   ├── DefaultTextViewCommandTarget.cs
        │   │   │   ├── DefaultTextViewCommandTargetFilterProvider.cs
        │   │   │   ├── DefaultTextViewMouseProcessor.cs
        │   │   │   ├── DsScrollBar.cs
        │   │   │   ├── EditorOptions.cs
        │   │   │   ├── EditorOptionsFactoryService.cs
        │   │   │   ├── EditorPositionState.cs
        │   │   │   ├── EnableColorizationEditorOptionDefinition.cs
        │   │   │   ├── ForceClearTypeIfNeededEditorOptionDefinition.cs
        │   │   │   ├── GetFirstGlyphTextMarkerAndSpanEventArgs.cs
        │   │   │   ├── GetGlyphTextMarkerAndSpanEventArgs.cs
        │   │   │   ├── GlyphMargin.cs
        │   │   │   ├── GlyphMarginProvider.cs
        │   │   │   ├── GlyphTextMarkerAddedEventArgs.cs
        │   │   │   ├── GlyphTextMarkerContextMenuHandlerProvider.cs
        │   │   │   ├── GlyphTextMarkerEventArgs.cs
        │   │   │   ├── GlyphTextMarkerRemovedEventArgs.cs
        │   │   │   ├── GlyphTextMarkerService.cs
        │   │   │   ├── GlyphTextMarkerServiceMouseProcessor.cs
        │   │   │   ├── GlyphTextMarkerServiceMouseProcessorProvider.cs
        │   │   │   ├── GlyphTextMarkersRemovedEventArgs.cs
        │   │   │   ├── GlyphTextViewMarkerClassificationTagger.cs
        │   │   │   ├── GlyphTextViewMarkerClassificationTaggerProvider.cs
        │   │   │   ├── GlyphTextViewMarkerGlyphFactory.cs
        │   │   │   ├── GlyphTextViewMarkerGlyphFactoryProvider.cs
        │   │   │   ├── GlyphTextViewMarkerGlyphTagger.cs
        │   │   │   ├── GlyphTextViewMarkerGlyphTaggerProvider.cs
        │   │   │   ├── GlyphTextViewMarkerGlyphTextMarkerTagger.cs
        │   │   │   ├── GlyphTextViewMarkerGlyphTextMarkerTaggerProvider.cs
        │   │   │   ├── GlyphTextViewMarkerService.cs
        │   │   │   ├── GoToCommandTargetFilter.cs
        │   │   │   ├── GoToCommandTargetFilterProvider.cs
        │   │   │   ├── HighlightRelatedKeywordsEditorOptionDefinition.cs
        │   │   │   ├── HorizontalScrollBarContainerMargin.cs
        │   │   │   ├── HorizontalScrollBarContainerMarginProvider.cs
        │   │   │   ├── HorizontalScrollBarMargin.cs
        │   │   │   ├── HorizontalScrollBarMarginProvider.cs
        │   │   │   ├── IAdornmentLayerDefinitionService.cs
        │   │   │   ├── IDsWpfTextViewImpl.cs
        │   │   │   ├── IGlyphTextDotNetTokenMarkerImpl.cs
        │   │   │   ├── IGlyphTextMarkerImpl.cs
        │   │   │   ├── IGlyphTextMarkerListener.cs
        │   │   │   ├── IGlyphTextMarkerServiceImpl.cs
        │   │   │   ├── IGlyphTextMethodMarkerImpl.cs
        │   │   │   ├── IGlyphTextViewMarkerService.cs
        │   │   │   ├── IIntraTextAdornmentService.cs
        │   │   │   ├── IIntraTextAdornmentServiceProvider.cs
        │   │   │   ├── IIntraTextAdornmentServiceSpaceNegotiatingAdornmentTagger.cs
        │   │   │   ├── ILineSeparatorServiceProvider.cs
        │   │   │   ├── IReplEditor2.cs
        │   │   │   ├── ISpaceReservationStack.cs
        │   │   │   ├── ISpaceReservationStackProvider.cs
        │   │   │   ├── IWpfTextViewConnectionListenerServiceProvider.cs
        │   │   │   ├── IWpfTextViewMarginProviderCollection.cs
        │   │   │   ├── IWpfTextViewMarginProviderCollectionProvider.cs
        │   │   │   ├── IncrementalSearch
        │   │   │   │   ├── IncrementalSearch.cs
        │   │   │   │   └── IncrementalSearchFactoryService.cs
        │   │   │   ├── IndentHelper.cs
        │   │   │   ├── IndentStyleEditorOptionDefinition.cs
        │   │   │   ├── IntraTextAdornmentService.cs
        │   │   │   ├── IntraTextAdornmentServiceProvider.cs
        │   │   │   ├── IntraTextAdornmentServiceSpaceNegotiatingAdornmentTagger.cs
        │   │   │   ├── IntraTextAdornmentServiceSpaceNegotiatingAdornmentTaggerProv.cs
        │   │   │   ├── KeyProcessorCollection.cs
        │   │   │   ├── KeyboardWpfTextViewCreationListener.cs
        │   │   │   ├── LeftSelectionMargin.cs
        │   │   │   ├── LeftSelectionMarginProvider.cs
        │   │   │   ├── LineCompressor.cs
        │   │   │   ├── LineCompressorProvider.cs
        │   │   │   ├── LineNumberMargin.cs
        │   │   │   ├── LineNumberMarginBase.cs
        │   │   │   ├── LineNumberMarginProvider.cs
        │   │   │   ├── LineSeparatorEditorOptionDefinition.cs
        │   │   │   ├── LineSeparatorService.cs
        │   │   │   ├── LineSeparatorServiceProvider.cs
        │   │   │   ├── LineSeparatorWpfTextViewCreationListener.cs
        │   │   │   ├── LogEditor.cs
        │   │   │   ├── LogEditorProvider.cs
        │   │   │   ├── MarginContextMenuService.cs
        │   │   │   ├── MarkerHelper.cs
        │   │   │   ├── MetadataAndOrder.cs
        │   │   │   ├── MouseLocation.cs
        │   │   │   ├── MouseProcessorCollection.cs
        │   │   │   ├── MouseWpfTextViewCreationListener.cs
        │   │   │   ├── NullCommandTargetCollection.cs
        │   │   │   ├── NullRegisteredCommandElement.cs
        │   │   │   ├── Operations
        │   │   │   │   ├── TextViewUndoManager.cs
        │   │   │   │   ├── TextViewUndoManagerProvider.cs
        │   │   │   │   └── UndoRedoCommandTargetFilter.cs
        │   │   │   ├── OptionsHelpers.cs
        │   │   │   ├── OutputTextPaneCommandInfoProvider.cs
        │   │   │   ├── OutputTextPaneCommandTargetFilter.cs
        │   │   │   ├── OutputTextPaneCommandTargetFilterProvider.cs
        │   │   │   ├── OutputTextPaneUtils.cs
        │   │   │   ├── PopupHelper.cs
        │   │   │   ├── PopupSpaceReservationAgent.cs
        │   │   │   ├── ReferenceHighlightingEditorOptionDefinition.cs
        │   │   │   ├── RefreshScreenOnChangeEditorOptionDefinition.cs
        │   │   │   ├── RefreshScreenOnChangeReplEditorOptionDefinition.cs
        │   │   │   ├── RefreshScreenOnChangeWaitMilliSecondsEditorOptionDefinition.cs
        │   │   │   ├── RefreshScreenOnChangeWaitMilliSecsReplEditorOptionDefinition.cs
        │   │   │   ├── RemoveExtraTextLineVerticalPixelsEditorOptionDefinition.cs
        │   │   │   ├── ReplBufferKind.cs
        │   │   │   ├── ReplCommandInfoProvider.cs
        │   │   │   ├── ReplCommandInput.cs
        │   │   │   ├── ReplCommandTargetFilter.cs
        │   │   │   ├── ReplCommandTargetFilterProvider.cs
        │   │   │   ├── ReplCommands.cs
        │   │   │   ├── ReplCustomLineNumberMarginOwner.cs
        │   │   │   ├── ReplEditor.cs
        │   │   │   ├── ReplEditorProvider.cs
        │   │   │   ├── ReplEditorReplaceListener.cs
        │   │   │   ├── ReplEditorReplaceListenerProvider.cs
        │   │   │   ├── ReplSubBuffer.cs
        │   │   │   ├── ReplSubBufferInfo.cs
        │   │   │   ├── ResourceDictionaryUtilities.cs
        │   │   │   ├── RightControlMarginProvider.cs
        │   │   │   ├── ScrollMap.cs
        │   │   │   ├── ScrollMapFactoryService.cs
        │   │   │   ├── Search
        │   │   │   │   ├── CommandTargetFilter.cs
        │   │   │   │   ├── CommandTargetFilterFocus.cs
        │   │   │   │   ├── CommandTargetFilterProvider.cs
        │   │   │   │   ├── CommandTargetFilterProviderFocus.cs
        │   │   │   │   ├── ISearchService.cs
        │   │   │   │   ├── ISearchServiceProvider.cs
        │   │   │   │   ├── ISearchSettings.cs
        │   │   │   │   ├── ITextMarkerListener.cs
        │   │   │   │   ├── SearchControl.xaml
        │   │   │   │   ├── SearchControl.xaml.cs
        │   │   │   │   ├── SearchService.cs
        │   │   │   │   ├── SearchServiceProvider.cs
        │   │   │   │   ├── SearchSettings.cs
        │   │   │   │   ├── TextMarkerTagger.cs
        │   │   │   │   ├── TextMarkerTaggerProvider.cs
        │   │   │   │   └── WpfTextViewCreationListener.cs
        │   │   │   ├── SelectionUtilities.cs
        │   │   │   ├── SmartIndentationService.cs
        │   │   │   ├── SpaceReservationManager.cs
        │   │   │   ├── SpaceReservationStack.cs
        │   │   │   ├── SpaceReservationStackProvider.cs
        │   │   │   ├── SpacerMargin.cs
        │   │   │   ├── SpacerMarginProvider.cs
        │   │   │   ├── SpanAndClassificationType.cs
        │   │   │   ├── SystemTextCaret.cs
        │   │   │   ├── TextCaret.cs
        │   │   │   ├── TextCaretLayer.cs
        │   │   │   ├── TextEditorFactoryService.cs
        │   │   │   ├── TextFormattingUtilities.cs
        │   │   │   ├── TextLayer.cs
        │   │   │   ├── TextMarkerProviderFactory.cs
        │   │   │   ├── TextMarkerService.cs
        │   │   │   ├── TextMarkerServiceTaggerProvider.cs
        │   │   │   ├── TextMarkerServiceWpfTextViewCreationListener.cs
        │   │   │   ├── TextReferenceCommandInfoProvider.cs
        │   │   │   ├── TextSelection.cs
        │   │   │   ├── TextSelectionExtensions.cs
        │   │   │   ├── TextSelectionLayer.cs
        │   │   │   ├── TextSnapshotLineExtensions.cs
        │   │   │   ├── TextViewExtensions.cs
        │   │   │   ├── TextViewLineExtensions.cs
        │   │   │   ├── TextViewModel.cs
        │   │   │   ├── TextViewMouseProcessorCollection.cs
        │   │   │   ├── TextViewRoleSet.cs
        │   │   │   ├── UriClassificationTagger.cs
        │   │   │   ├── UriClassificationTaggerProvider.cs
        │   │   │   ├── UriFinder.cs
        │   │   │   ├── UriHelper.cs
        │   │   │   ├── UriMouseProcessor.cs
        │   │   │   ├── UriMouseProcessorProvider.cs
        │   │   │   ├── UriQuickInfoSource.cs
        │   │   │   ├── UriQuickInfoSourceProvider.cs
        │   │   │   ├── UriTagger.cs
        │   │   │   ├── UriTaggerProvider.cs
        │   │   │   ├── UriWpfTextViewCreationListener.cs
        │   │   │   ├── VerticalScrollBarContainerMarginProvider.cs
        │   │   │   ├── VerticalScrollBarMargin.cs
        │   │   │   ├── VerticalScrollBarMarginProvider.cs
        │   │   │   ├── ViewScroller.cs
        │   │   │   ├── WpfTextView.cs
        │   │   │   ├── WpfTextViewConnectionListenerService.cs
        │   │   │   ├── WpfTextViewConnectionListenerServiceProvider.cs
        │   │   │   ├── WpfTextViewConstants.cs
        │   │   │   ├── WpfTextViewContainerMargin.cs
        │   │   │   ├── WpfTextViewExtensions.cs
        │   │   │   ├── WpfTextViewHost.cs
        │   │   │   ├── WpfTextViewLineCollection.cs
        │   │   │   ├── WpfTextViewMarginInfo.cs
        │   │   │   ├── WpfTextViewMarginProviderCollection.cs
        │   │   │   ├── WpfTextViewMarginProviderCollectionProvider.cs
        │   │   │   ├── ZoomControlMargin.cs
        │   │   │   └── ZoomControlMarginProvider.cs
        │   │   ├── Formatting
        │   │   │   ├── FormattedLineSource.cs
        │   │   │   ├── FormattedTextCache.cs
        │   │   │   ├── FormattedTextSourceFactoryService.cs
        │   │   │   ├── HtmlBuilder.cs
        │   │   │   ├── HtmlBuilderService.cs
        │   │   │   ├── ILineTransformProvider.cs
        │   │   │   ├── ILineTransformProviderService.cs
        │   │   │   ├── ITextFormatterProvider.cs
        │   │   │   ├── ITextParagraphPropertiesFactoryServiceSelector.cs
        │   │   │   ├── LinePart.cs
        │   │   │   ├── LinePartsCollection.cs
        │   │   │   ├── LinePartsTextSource.cs
        │   │   │   ├── LineTransformProviderService.cs
        │   │   │   ├── PhysicalLine.cs
        │   │   │   ├── PhysicalLineCache.cs
        │   │   │   ├── TextAndAdornmentCollection.cs
        │   │   │   ├── TextAndAdornmentSequencer.cs
        │   │   │   ├── TextAndAdornmentSequencerFactoryService.cs
        │   │   │   ├── TextFormatterProvider.cs
        │   │   │   ├── TextFormattingRunPropertiesExtensions.cs
        │   │   │   ├── TextLineExtensions.cs
        │   │   │   ├── TextParagraphPropertiesFactoryServiceSelector.cs
        │   │   │   ├── TextSequenceElement.cs
        │   │   │   └── WpfTextViewLine.cs
        │   │   ├── Groups
        │   │   │   ├── ITextViewOptionsGroupServiceImpl.cs
        │   │   │   ├── OptionsStorage.cs
        │   │   │   ├── TextViewGroupOption.cs
        │   │   │   ├── TextViewGroupOptionCollection.cs
        │   │   │   ├── TextViewOptionsGroup.cs
        │   │   │   ├── TextViewOptionsGroupService.cs
        │   │   │   └── TextViewOptionsGroupServiceLoader.cs
        │   │   ├── MEF
        │   │   │   ├── IAdornmentLayersMetadata.cs
        │   │   │   ├── IClassificationFormatMetadata.cs
        │   │   │   ├── IClassificationTypeDefinitionMetadata.cs
        │   │   │   ├── IContentTypeAndTextViewRoleMetadata.cs
        │   │   │   ├── IContentTypeDefinitionMetadata.cs
        │   │   │   ├── IDeferrableContentTypeAndTextViewRoleMetadata.cs
        │   │   │   ├── IEditorFormatMetadata.cs
        │   │   │   ├── IGlyphMarginMetadata.cs
        │   │   │   ├── IGlyphMetadata.cs
        │   │   │   ├── IGlyphMouseProcessorProviderMetadata.cs
        │   │   │   ├── IGlyphTextMarkerMouseProcessorProviderMetadata.cs
        │   │   │   ├── IMarginContextMenuHandlerProviderMetadata.cs
        │   │   │   ├── INamedTaggerMetadata.cs
        │   │   │   ├── IOrderableContentTypeAndTextViewRoleMetadata.cs
        │   │   │   ├── IOrderableContentTypeMetadata.cs
        │   │   │   ├── ITaggerMetadata.cs
        │   │   │   ├── ITextViewRoleMetadata.cs
        │   │   │   ├── IViewTaggerMetadata.cs
        │   │   │   └── IWpfTextViewMarginMetadata.cs
        │   │   ├── MappingPoint.cs
        │   │   ├── MappingSpan.cs
        │   │   ├── NormalizedTextChangeCollection.cs
        │   │   ├── OffsetAndCachedColors.cs
        │   │   ├── Operations
        │   │   │   ├── AnyTextStructureNavigator.cs
        │   │   │   ├── AnyTextStructureNavigatorProvider.cs
        │   │   │   ├── ChangeInfo.cs
        │   │   │   ├── EditorOperations.cs
        │   │   │   ├── EditorOperationsFactoryService.cs
        │   │   │   ├── EditorOptionsExtensions.cs
        │   │   │   ├── ReplEditorOperations.cs
        │   │   │   ├── TextBufferUndoManager.cs
        │   │   │   ├── TextBufferUndoManagerProvider.cs
        │   │   │   ├── TextSearchNavigator.cs
        │   │   │   ├── TextSearchNavigatorFactoryService.cs
        │   │   │   ├── TextSearchService.cs
        │   │   │   ├── TextStructureNavigator.cs
        │   │   │   ├── TextStructureNavigatorSelectorService.cs
        │   │   │   ├── TextUndoHistory.cs
        │   │   │   ├── TextUndoHistoryRegistry.cs
        │   │   │   ├── TextUndoPrimitive.cs
        │   │   │   ├── TextUndoTransaction.cs
        │   │   │   └── WordParser.cs
        │   │   ├── Projection
        │   │   │   ├── BufferGraph.cs
        │   │   │   └── BufferGraphFactoryService.cs
        │   │   ├── ProviderSelector.cs
        │   │   ├── Repl
        │   │   │   ├── AdvancedAppSettingsPage.cs
        │   │   │   ├── AppSettingsPageContainer.cs
        │   │   │   ├── AppSettingsPageProvider.cs
        │   │   │   ├── ContentTypeOptionDefinitionProvider.cs
        │   │   │   ├── GeneralAppSettingsPage.cs
        │   │   │   ├── IReplOptions.cs
        │   │   │   ├── IReplOptionsService.cs
        │   │   │   ├── LanguageAppSettingsPage.cs
        │   │   │   ├── ReplOptions.cs
        │   │   │   ├── ReplOptionsService.cs
        │   │   │   ├── ScrollBarsAppSettingsPage.cs
        │   │   │   ├── TabsAppSettingsPage.cs
        │   │   │   └── TextViewOptionsGroupNameProvider.cs
        │   │   ├── Settings
        │   │   │   ├── AdvancedAppSettingsPageBase.cs
        │   │   │   ├── CommonEditorOptions.cs
        │   │   │   ├── GeneralAppSettingsPageBase.cs
        │   │   │   ├── ICommonEditorOptions.cs
        │   │   │   ├── ScrollBarsAppSettingsPageBase.cs
        │   │   │   └── TabsAppSettingsPageBase.cs
        │   │   ├── SimpleTextImage.cs
        │   │   ├── Tagging
        │   │   │   ├── BufferTagAggregatorFactoryService.cs
        │   │   │   ├── ITaggerFactory.cs
        │   │   │   ├── TagAggregatorBase.cs
        │   │   │   ├── TaggerFactory.cs
        │   │   │   ├── TextBufferTagAggregator.cs
        │   │   │   ├── TextViewTagAggregator.cs
        │   │   │   ├── ViewTagAggregatorFactoryService.cs
        │   │   │   └── Xml
        │   │   │       ├── TaggerClassificationTypes.cs
        │   │   │       ├── XamlAttributeValueClassifier.cs
        │   │   │       ├── XamlKind.cs
        │   │   │       ├── XamlSpan.cs
        │   │   │       ├── XamlTagger.cs
        │   │   │       ├── XamlTaggerClassificationTypes.cs
        │   │   │       ├── XamlTaggerProvider.cs
        │   │   │       ├── XmlClassifier.cs
        │   │   │       ├── XmlKind.cs
        │   │   │       ├── XmlSpanKind.cs
        │   │   │       ├── XmlTagger.cs
        │   │   │       ├── XmlTaggerBase.cs
        │   │   │       ├── XmlTaggerClassificationTypes.cs
        │   │   │       └── XmlTaggerProvider.cs
        │   │   ├── TextBuffer.cs
        │   │   ├── TextBufferFactoryService.cs
        │   │   ├── TextChange.cs
        │   │   ├── TextDataModel.cs
        │   │   ├── TextEdit.cs
        │   │   ├── TextImage.cs
        │   │   ├── TextImageFactoryService.cs
        │   │   ├── TextImageUtils.cs
        │   │   ├── TextImageVersion.cs
        │   │   ├── TextSnapshot.cs
        │   │   ├── TextSnapshotLine.cs
        │   │   ├── TextVersion.cs
        │   │   ├── TrackingPoint.cs
        │   │   ├── TrackingSpan.cs
        │   │   ├── UnicodeUtilities.cs
        │   │   └── WPF
        │   │       └── BrushComparer.cs
        │   ├── Themes
        │   │   ├── AppCommandLineArgsHandler.cs
        │   │   ├── BrushColorInfo.cs
        │   │   ├── Color.cs
        │   │   ├── ColorColorInfo.cs
        │   │   ├── ColorInfo.cs
        │   │   ├── ColorInfos.cs
        │   │   ├── DrawingBrushColorInfo.cs
        │   │   ├── IThemeServiceImpl.cs
        │   │   ├── LinearGradientColorInfo.cs
        │   │   ├── Theme.cs
        │   │   ├── ThemeColor.cs
        │   │   ├── ThemeHelpers.cs
        │   │   ├── ThemeService.cs
        │   │   ├── ThemeSettings.cs
        │   │   ├── ThemesConstants.cs
        │   │   ├── ThemesMenu.cs
        │   │   ├── ThemesMenuItem.cs
        │   │   └── wpf.styles.templates.xaml
        │   ├── ToolBars
        │   │   ├── ToolBarButtonMD.cs
        │   │   ├── ToolBarButtonVM.cs
        │   │   ├── ToolBarItemContext.cs
        │   │   ├── ToolBarItemGroupMD.cs
        │   │   ├── ToolBarItemMD.cs
        │   │   ├── ToolBarObjectMD.cs
        │   │   └── ToolBarService.cs
        │   ├── ToolWindows
        │   │   ├── TabContentImpl.cs
        │   │   ├── ToolWindowGroup.cs
        │   │   ├── ToolWindowGroupService.cs
        │   │   ├── ToolWindowService.cs
        │   │   └── ToolWindowServiceProvider.cs
        │   ├── TreeView
        │   │   ├── DsSharpTreeNode.cs
        │   │   ├── ITreeViewServiceImpl.cs
        │   │   ├── SharpTreeNodeChildrenList.cs
        │   │   ├── Text
        │   │   │   ├── ContentTypeDefinitions.cs
        │   │   │   └── TreeViewNodeTextElementProvider.cs
        │   │   ├── TreeNodeDataImpl.cs
        │   │   ├── TreeNodeImpl.cs
        │   │   ├── TreeViewImpl.cs
        │   │   └── TreeViewService.cs
        │   ├── UI
        │   │   └── UIDispatcher.cs
        │   ├── app.manifest
        │   ├── dnSpy.LicenseInfo.CREDITS.txt
        │   ├── dnSpy.csproj
        │   └── dnSpy.ico
        ├── dnSpy.sln
        ├── from.gif
        ├── js
        │   └── jquery-1.4.2.min.js
        ├── web.config
        ├── website.publishproj
        └── 最新Asp.Net源码下载.url

185 directories, 2245 files


实例下载地址

代码生成器

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警