I'm using the below link:
http://libphonenumber.googlecode.com/svn/trunk/javascript/i18n/phonenumbers/demo-compiled.html
- phone number:
96596032346
- region code:
KW
the link returns that the number is valid.
I'm using the library in C# as below :
PhoneNumberUtil phoneUtil = PhoneNumberUtil.GetInstance();
phoneNumber = PhoneNumberUtil.Normalize(phoneNumber);
PhoneNumber nb = phoneUtil.Parse(phoneNumber, regionCode);
bool isValid = phoneUtil.IsValidNumber(nb);
I'm passing the same parameters phoneNumber=96596032346
and regionCode=KW
but it's returning is that the number is not valid.
I checked for some updates for the library but I have the latest version. What could be the problem?