CodeXchange Tuesday, April 23, 2024
Home
What's it?
Download
Register
My Snippets
Add Snippet
Search
Faq
Contact Us
Sponsors

Website hosted by


Code Snippet Preview

Review the code snippet before inserting it on your project.

Snippet Metadata
Summary: Generate Luhn
Language: C#
Author: Vidar Markussen
Author snippets RSS:
Culture: en-US
Bytes: 1222
Visual Studio 2005 Snippet:

Snippet Stats
Downloads: 0
Overall rating : 0
Average rating : Snippet rating

Snippet Preview
Code:
      /// 
      /// Input a KID number, and the return value is a mathematical
      /// Mod 10 value of this KID.
      /// 
      /// KID to be evaluated
      /// The Mod 10 Digit
      /// 
      /// KID: 0000001075000102004
      /// Check Digit: 7
      /// Math:
      ///  0 0 0 0 0 0 1 0 7 5 0 0 0 1 0 2 0 0 4
      ///  2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2
      /// +0+0+0+0+0+0+2+0+5+5+0+0+0+1+0+2+0+0+8 = 23
/// The digits in the two lines are Multiplicated
/// ex: 7*2 = 14 = 1+4 = 5 /// ex: 1*2 = 2 /// If Sum Exeeds 9 digits are added ex: 14 = 1+4 = 5 /// Take 10 - last digit = 10-3=7 /// CheckDigit is then 7 /// public int GenerateLuhn(string sInput) { int length = sInput.Length; int iLuhnKey; int sum = 0; int offset = length-1 % 2; byte[] digits = new System.Text.ASCIIEncoding().GetBytes(sInput); for (int i = 0; i < length; i++) { digits[i] -= 48; if (((i + offset) % 2) == 0) digits[i] *= 2; sum += (digits[i] > 9) ? digits[i] - 9 : digits[i]; } int iModulo = sum%10; if(iModulo > 0) iLuhnKey = 10 - iModulo; else iLuhnKey = 0; return iLuhnKey; }

Snippet Comments
Comments:
No comments for this snippet

Other snippets that may interest you..
Related Snippets
TDT - GridPage - Page_Init (C#)
CustomValitaor (C#)
(C#)
Get the file extension from a file path or file name (VB.NET)
grab record from db and subtracts it from variable (VB.NET)



Copyright ©2009-2024 CodeXchange. Server version 1.0.3720.32855 Client Version 0.9.0.0

With from Barcelona

Most Helpful members
These are the members who have received the most points for their helpful samples
Zepho Zep
Robert Wagner
Galen Taylor

All time 'Hall of fame'
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
INI File Access (VB.NET)
Read XML from string into DataSet (C#)
Create Manifest File for your Application (VB.NET)
Round function to avoid banker's rounding (VB.NET)
Get Short and Long Path Names (VB.NET)
Sending Mail through authenticated SMTP server (C#)
One Way Hash for strings (C#)
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
How do I load an image from a URI address? (VB.NET)
Use our easy to use Visual Studio.NET addin client and start sharing code snippets with the CodeXchange community!
Refreshed: Tuesday, April 23, 2024