Exemplo n.º 1
0
 public static POPreviousValueComment Parse(string value, POStringDecodingOptions options)
 {
     return
         (TryParse(value, options, out POPreviousValueComment result) ?
          result :
          throw new FormatException(Resources.IncorrectFormat));
 }
Exemplo n.º 2
0
 public static bool TryParse(string value, POStringDecodingOptions options, out POPreviousValueComment result)
 {
     return(TryParse(value, POString.NewLine(options?.KeepKeyStringsPlatformIndependent ?? false), out result));
 }