C# Class LinFu.Reflection.Emit.AssemblyDefinitionExtensions

A class that adds extension methods to the AssemblyDefinition class.
Afficher le fichier Open project: philiplaureano/LinFu

Méthodes publiques

Méthode Description
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.

Method Details

Save() public static méthode

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.
Résultat void

Save() public static méthode

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.
Résultat void

ToAssembly() public static méthode

Converts an AssemblyDefinition into a running Assembly.
public static ToAssembly ( this definition ) : Assembly
definition this The to convert.
Résultat System.Reflection.Assembly