Does anyone know of a generic phone number parsing library for .NET? Ideally I\'m looking for something similiar to the Ruby Phone library.
I'd recommend going with libphonenumber from Google, here's a blog post on how to use libphonenumber.
Parsing numbers is as easy as installing the NuGet package and then doing this:
var util = PhoneNumberUtil.GetInstance(); var number = util.Parse("555-555-5555", "US");