InstanceSpaceOut Property of the Compiler Object

InstanceSpaceOut Property of the Compiler Object

Gets or sets the TextWriter to write to the specified instance space after simulation. InstanceSpaceOut is used when instantiating the TextWriter used for the compiler instance space output.

  [C#]
public TextWriter InstanceSpaceOut {get; set;}

FakePre-8dc8d090bb614b498afe8423972dc385-2cf27a77434e4253bc9d725aa5d6bcf7

Example Code [C#]

The following example shows InstanceSpaceOut as the wrapper for the TextWriter.

Compiler compiler = new Compiler();
compiler.InstanceSpaceOut = new StreamWriter("SomeFileName.xml");

Example Code [Visual Basic .NET]

The following example shows InstanceSpaceOut as the wrapper for the TextWriter.

Dim compiler As Compiler
compiler = New Compiler()
compiler.InstanceSpaceOut = New StreamWriter("SomeFileName.xml")

Requirements

Namespace

Defined in Microsoft.SystemDefinitionModel.Tools.

Assembly

Requires SdmCompile (in SdmCompile.dll).

.NET Framework

Requires .NET Framework 2.0.

See Also

Microsoft.SystemDefinitionModel.Tools
Compiler
System.IO.TextWriter

Send comments about this topic to Microsoft

Build date: 10/2/2007