Exemple #1
0
 /// <summary>
 /// Return an integer including the checkdigit
 /// </summary>
 /// <param name="digits">The original integer</param>
 /// <returns>the new integer including checkdigit</returns>
 public static Int64 AppendCheckDigit(this Int64 digits)
 {
     return(digits * 10 + digits.CheckDigit());
 }