「なぜ私の.net exeはとても巨大なのですか」アナライザーツール?

StackOverflow https://stackoverflow.com/questions/9313442

  •  26-10-2019
  •  | 
  •  

質問

.NETアセンブリ(実行可能ファイルまたはDLLファイル)のサイズを説明できるツールはありますか?

昔は、プロジェクトで使用されるスペースを詳述するIDE拡張機能がありました。

大きなものを表示する必要があります コード ファイル:

Enter image description here

およびデータ 資力:

Enter image description here

.NETの世界にはそのようなことはありますか?

.NETに移動すると、VCL全体を実行可能ファイルに組み込む必要がなくなったと本当に思っていました。実行可能なサイズは縮小するでしょう。

ボーナスリーディング

役に立ちましたか?

解決

標準的なSDKはIldasm(IL Resassembler)を取りました。ビューメニューに「統計」オプションがありました。

 File size            : 3072
 PE header size       : 512 (456 used)    (16.67%)
 PE additional info   : 167               ( 5.44%)
 Num.of PE sections   : 2
 CLR header size     : 72                 ( 2.34%)
 CLR meta-data size  : 1572               (51.17%)
 CLR additional info : 0                  ( 0.00%)
 CLR method headers  : 15                 ( 0.49%)
 Managed code         : 77                ( 2.51%)
 Data                 : 512               (16.67%)
 Unaccounted          : 145               ( 4.72%)

 Num.of PE sections   : 2
   .text    - 2048
   .reloc   - 512

 CLR meta-data size  : 1572
   Module        -    1 (10 bytes)
   TypeDef       -    4 (56 bytes)      0 interfaces, 0 explicit layout
   TypeRef       -   15 (90 bytes)
   MethodDef     -    4 (56 bytes)      0 abstract, 0 native, 4 bodies
   FieldDef      -    2 (12 bytes)      0 constant
   MemberRef     -   15 (90 bytes)
   ParamDef      -    4 (24 bytes)
   CustomAttribute-   13 (78 bytes)
   StandAloneSig -    1 (2 bytes)
   Assembly      -    1 (22 bytes)
   AssemblyRef   -    1 (20 bytes)
   Strings       -   571 bytes
   Blobs         -   336 bytes
   UserStrings   -     8 bytes
   Guids         -    16 bytes
   Uncategorized -   181 bytes

 CLR method headers : 15
   Num.of method bodies  - 4
   Num.of fat headers    - 1
   Num.of tiny headers   - 3

 Managed code : 77
   Ave method size - 19

これは良い出発点を提供するはずです。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top