CodeGeneratorOptions.VerbatimOrder Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.