skwasjer / IbanNet

C# .NET IBAN validator, parser, builder and generator
Apache License 2.0
126 stars 31 forks source link

Generate Iban #21

Closed ekjuanrejon closed 3 years ago

ekjuanrejon commented 4 years ago

Is it possible to generate an iban?

skwasjer commented 4 years ago

Not at the moment. For testing purposes, the best that is possible atm, is using the IbanCountry.Iban.Example property.

IbanRegistry.Default.TryGetValue("NL", out IbanCountry country);
Debug.WriteLine(country.Iban.Example);

I will probably add something like this at some point, but can't say when.