SymWriter 构造函数

定义

重载

SymWriter()

初始化 SymWriter 类的新实例。Initializes a new instance of the SymWriter class.

SymWriter(Boolean)

初始化 SymWriter 类的新实例,指定是否创建基础符号编写器。Initializes a new instance of the SymWriter class, specifying whether to create an underlying symbol writer.

SymWriter()

初始化 SymWriter 类的新实例。Initializes a new instance of the SymWriter class.

public:
 SymWriter();
public SymWriter ();
Public Sub New ()

适用于

SymWriter(Boolean)

初始化 SymWriter 类的新实例,指定是否创建基础符号编写器。Initializes a new instance of the SymWriter class, specifying whether to create an underlying symbol writer.

public:
 SymWriter(bool noUnderlyingWriter);
public SymWriter (bool noUnderlyingWriter);
new System.Diagnostics.SymbolStore.SymWriter : bool -> System.Diagnostics.SymbolStore.SymWriter
Public Sub New (noUnderlyingWriter As Boolean)

参数

noUnderlyingWriter
Boolean

如果基础符号编写器将通过调用 SetUnderlyingWriter(IntPtr) 方法来提供,则为 true;相反,如果应创建一个默认基础符号编写器,则为 falsetrue if an underlying symbol writer will be provided by calling the SetUnderlyingWriter(IntPtr) method; false if a default underlying symbol writer should be created instead.

适用于