Windows provides country code C#

Anderson Rodrigues Cavalcante 271 Reputation points
2021-10-14T20:39:41.383+00:00

Is there any Windows API that I can get the country code of the phone number in C#? Some code I receive country code Windows region phone number. Windows itself provides me with this information.

Universal Windows Platform (UWP)
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,264 questions
{count} votes

Accepted answer
  1. Nico Zhu (Shanghai Wicresoft Co,.Ltd.) 12,856 Reputation points
    2021-10-15T06:36:54.503+00:00

    Hello,
    Welcome to Microsoft Q&A!

    Is there any Windows API that I can get the country code of the phone number in C#?

    Sure, you could use PhoneNumberInfo class to get your country with your phone number.

    For example:

    var phonenumberinfo = new PhoneNumberInfo("176xxxxxxxx");  
    var countryCode = phonenumberinfo.CountryCode;  
    

    Thank you.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful