Validates a 16 digit LUHN checked health identifier

Namespace: Nehta.VendorLibrary.Common
Assembly: Nehta.VendorLibrary.Common (in Nehta.VendorLibrary.Common.dll) Version: 3.0.2.0 (1.0.0.0)

Syntax

C#
public static bool ValidateLuhnCheckDigit(
	string healthIdentifierWithLuhnCheckDigit
)
Visual Basic
Public Shared Function ValidateLuhnCheckDigit ( _
	healthIdentifierWithLuhnCheckDigit As String _
) As Boolean
Visual C++
public:
static bool ValidateLuhnCheckDigit(
	String^ healthIdentifierWithLuhnCheckDigit
)

Parameters

healthIdentifierWithLuhnCheckDigit
Type: System..::..String
16 digit health identifier that includes a LUHN check digit.

Return Value

Boolean : True if input is a valid LUHN checked number, False otherwise.

See Also