C# Класс LinFu.Reflection.Emit.AssemblyDefinitionExtensions

A class that adds extension methods to the AssemblyDefinition class.
Показать файл Открыть проект

Открытые методы

Метод Описание
Save ( this definition, Stream outputStream ) : void

Saves the assembly to disk.

Save ( this definition, string filename ) : void

Saves the assembly to disk.

ToAssembly ( this definition ) : Assembly

Converts an AssemblyDefinition into a running Assembly.

Описание методов

Save() публичный статический Метод

Saves the assembly to disk.
public static Save ( this definition, Stream outputStream ) : void
definition this The target assembly definition.
outputStream System.IO.Stream The destination file stream.
Результат void

Save() публичный статический Метод

Saves the assembly to disk.
public static Save ( this definition, string filename ) : void
definition this The target assembly definition.
filename string The output file name.
Результат void

ToAssembly() публичный статический Метод

Converts an AssemblyDefinition into a running Assembly.
public static ToAssembly ( this definition ) : Assembly
definition this The to convert.
Результат System.Reflection.Assembly