MetaData.ConvertCodeSourceStreamToAssemblyFile Method

Definition

Compiles specified code source streams into a run-time assembly file.

public:
 static void ConvertCodeSourceStreamToAssemblyFile(System::Collections::ArrayList ^ outCodeStreamList, System::String ^ assemblyPath, System::String ^ strongNameFilename);
public static void ConvertCodeSourceStreamToAssemblyFile (System.Collections.ArrayList outCodeStreamList, string assemblyPath, string strongNameFilename);
static member ConvertCodeSourceStreamToAssemblyFile : System.Collections.ArrayList * string * string -> unit
Public Shared Sub ConvertCodeSourceStreamToAssemblyFile (outCodeStreamList As ArrayList, assemblyPath As String, strongNameFilename As String)

Parameters

outCodeStreamList
ArrayList

A ArrayList of streams with the source code.

assemblyPath
String

The location where the new run-time assembly is generated.

strongNameFilename
String

The strong name to compile into the new run-time assembly. Can be Empty.

Remarks

For additional information on strong names, see Strong-Named Assemblies.

Note

If a file with the specified name already exists, it is overwritten.

Applies to