CodeGeneratorOptions.VerbatimOrder Property

Definition

Gets or sets a value indicating whether to generate members in the order in which they occur in member collections.

public:
 property bool VerbatimOrder { bool get(); void set(bool value); };
public bool VerbatimOrder { get; set; }
[System.Runtime.InteropServices.ComVisible(false)]
public bool VerbatimOrder { get; set; }
member this.VerbatimOrder : bool with get, set
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.VerbatimOrder : bool with get, set
Public Property VerbatimOrder As Boolean

Property Value

true to generate the members in the order in which they occur in the member collection; otherwise, false. The default value of this property is false.

Attributes

Remarks

The default generates members by their type, for example; field, member, constructor, or property. A code generator can use the VerbatimOrder property to inject #region blocks into code, thus changing the order.

Applies to