Period.Parse Method
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.
Overloads
| Name | Description |
|---|---|
| Parse(ICharSequence) |
Obtains a Period from a text string such as PnYnMnD. |
| Parse(String) |
Parse(ICharSequence)
Obtains a Period from a text string such as PnYnMnD.
[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/Period;", "", ApiSince=26)]
public static Java.Time.Period? Parse(Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/Period;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence -> Java.Time.Period
Parameters
- text
- ICharSequence
the text to parse, not null
Returns
the parsed period, not null
- Attributes
Remarks
To be added.
Java reference for java.time.Period.parse.