LuhnDotNet 1.1.0

dotnet add package LuhnDotNet --version 1.1.0
NuGet\Install-Package LuhnDotNet -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LuhnDotNet" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LuhnDotNet --version 1.1.0
#r "nuget: LuhnDotNet, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LuhnDotNet as a Cake Addin
#addin nuget:?package=LuhnDotNet&version=1.1.0

// Install LuhnDotNet as a Cake Tool
#tool nuget:?package=LuhnDotNet&version=1.1.0

Setup

Install LuhnDotNet package

  1. Open a console and switch to the directory, containing your project file.

  2. Use the following command to install version 1.1.0 of the LuhnDotNet package:

    dotnet add package LuhnDotNet -v 1.1.0 -f <FRAMEWORK>
    
  3. After the completion of the command, look at the project file to make sure that the package is successfully installed.

    You can open the .csproj file to see the added package reference:

    <ItemGroup>
      <PackageReference Include="LuhnDotNet" Version="1.1.0" />
    </ItemGroup>
    

Remove LuhnDotNet package

  1. Open a console and switch to the directory, containing your project file.

  2. Use the following command to remove the LuhnDotNet package:

    dotnet remove package LuhnDotNet
    
  3. After the completion of the command, look at the project file to make sure that the package is successfuly removed.

    You can open the .csproj file to check the deleted package reference.

Usage

Compute the Luhn check digit

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example1
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var checkDigit = Luhn.ComputeLuhnCheckDigit("37828224631000");
      //// Must be 5
      Console.WriteLine(checkDigit);
    }
  }
}

Compute the Luhn number

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example2
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var luhnNumber = Luhn.ComputeLuhnNumber("37828224631000");
      //// Must be 378282246310005
      Console.WriteLine(luhnNumber);
    }
  }
}

Validate Luhn number

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example3
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var isValid = Luhn.IsValid("378282246310005");
      //// Must be 'true'
      Console.WriteLine(isValid);
    }
  }
}

Validate number and corresponding Luhn check digit

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example4
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var isValid = Luhn.IsValid("37828224631000", 5);
      //// Must be 'true'
      Console.WriteLine(isValid);
    }
  }
}

Validate ISIN with LuhnDotNet and ConvertAlphaNumericToNumeric

The LuhnDotNet library can be used in combination with the ConvertAlphaNumericToNumeric method to validate an International Securities Identification Number (ISIN). An ISIN uniquely identifies a security, such as stocks, bonds or derivatives. It is a 12-character alphanumeric code.

The ConvertAlphaNumericToNumeric method is used to convert the alphanumeric ISIN to a numeric string, where each letter in the input string is replaced by its decimal ASCII value minus 55. This numeric string can then be validated using the Luhn.IsValid method.

Here is an example of how to use these methods to validate an ISIN:

using System;
using LuhnDotNet;

namespace Example5
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string isin = "US0378331005";
      bool isValid = Luhn.IsValid(isin.ConvertAlphaNumericToNumeric());

      Console.WriteLine($"The ISIN {isin} is valid: {isValid}");
    }
  }
}

Compute ISIN Check Digit with LuhnDotNet and ConvertAlphaNumericToNumeric

The LuhnDotNet library provides the ComputeLuhnCheckDigit method which can be used to compute the check digit of a numeric string according to the Luhn algorithm. When dealing with an International Securities Identification Number (ISIN), which is a 12-character alphanumeric code, we first need to convert the alphanumeric ISIN to a numeric string. This can be achieved using the ConvertAlphaNumericToNumeric method.

Here is an example of how to compute the check digit of an ISIN:

using System;
using LuhnDotNet;

namespace Example6
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string isinWithoutCheckDigit = "US037833100";
      byte checkDigit = Luhn.ComputeLuhnCheckDigit(isinWithoutCheckDigit.ConvertAlphaNumericToNumeric());

      Console.WriteLine($"The check digit for ISIN {isinWithoutCheckDigit} is: {checkDigit}");
    }
  }
}

Compute credit card number with LuhnDotNet

The LuhnDotNet library can be used to compute the check digit of a credit card number. The check digit is the last digit of the credit card number, which is used to validate the number according to the Luhn algorithm.

using System;
using LuhnDotNet;

namespace Example7
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string creditCardNumberWithoutCheckDigit = "4417 1234 5678 911".Replace(" ", "");
      byte checkDigit = Luhn.ComputeLuhnCheckDigit(creditCardNumberWithoutCheckDigit);

      Console.WriteLine($"The check digit for credit card number {creditCardNumberWithoutCheckDigit} is: {checkDigit}");
    }
  }
}

Validate credit card number with LuhnDotNet

The LuhnDotNet library can be used to validate a credit card number according to the Luhn algorithm. The IsValid method returns true if the credit card number is valid, and false otherwise.

using System;
using LuhnDotNet;

namespace Example8
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string creditCardNumber = "4417 1234 5678 9113".Replace(" ", "");
      bool isValid = Luhn.IsValid(creditCardNumber);

      Console.WriteLine($"The credit card number {creditCardNumber} is valid: {isValid}");
    }
  }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETFramework 4.7

    • No dependencies.
  • .NETFramework 4.7.1

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 109 3/30/2024
1.0.1 106 3/19/2024
1.0.0 110 2/19/2024
0.2.0 988 12/18/2022
0.1.0 5,718 6/5/2022