Java.Util.Regex.Pattern.Multiline Field
This constant specifies that the meta characters '^' and '$' match only the beginning and end of an input line, respectively.

Value: 8

Syntax

[Android.Runtime.Register("MULTILINE")]
[System.Obsolete("This constant will be removed in the future version. Use Java.Util.Regex.RegexOptions enum directly instead of this field.")]
public const RegexOptions Multiline

Remarks

This constant specifies that the meta characters '^' and '$' match only the beginning and end of an input line, respectively. Normally, they match the beginning and the end of the complete input. Corresponds to (?m).

[Android Documentation]

Requirements

Namespace: Java.Util.Regex
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1