示例#1
0
 /// <summary>
 /// Tries to create a new instance of <see cref="Cpf"/> from a CPF string
 /// </summary>
 /// <param name="value">a CPF string</param>
 /// <param name="cpf">the new instance of <see cref="Cpf"/></param>
 /// <returns>true if CPF string is valid; false, otherwise</returns>
 public static bool TryParse(string value, out Cpf cpf)
 {
     return(Cpf.TryParse(value, out cpf, CpfPunctuation.Loose));
 }
示例#2
0
 /// <summary>
 /// Creates a new instance of <see cref="Cpf"/> from a CPF string
 /// </summary>
 /// <param name="value">a CPF string</param>
 /// <returns>the new instance of <see cref="Cpf"/></returns>
 public static Cpf Parse(string value)
 {
     return(Cpf.Parse(value, CpfPunctuation.Loose));
 }