C# 클래스 LinFu.Reflection.Emit.AssemblyDefinitionExtensions

A class that adds extension methods to the AssemblyDefinition class.
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
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