Rule.Separator Property

Definition

The token used to separate a property switch from its value.

public:
 property System::String ^ Separator { System::String ^ get(); void set(System::String ^ value); };
public string Separator { get; set; }
public string Separator { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] set; }
member this.Separator : string with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.Separator : string with get, set
Public Property Separator As String

Property Value

Returns the token separator.

Attributes

Examples

Example: Consider /D:WIN32. In this switch and value representation, ":" is the separator since its separates the switch D from its value WIN32.

Remarks

The value specified here is overridden by the value specified by the child BaseProperty's Separator. This field is optional and culture invariant.

Applies to