Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Microsoft ILGenerator とその Emit メンバーを使用しました。それによって生成された出力ilファイルがどこにあるのか知りたいです。
生成された IL はディスクに自動的に保存されません。AppDomain.DefineDynamicAssembly()最初に、Save または RunAndSave の AssemblyBuilderAccess を使用して AssemblyBuilder が作成されていることを確認する必要があります。
AppDomain.DefineDynamicAssembly()
すべての IL を生成したらSave()、AssemblyBuilder でメソッドを使用して、生成されたアセンブリをディスクに保存できます。
Save()