Click here to Skip to main content
15,881,812 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
hi i m developing a windows phone application,
here i am displaying the contact name , i also need to display the contact Number too.. How can i achieve this plz.

C#
void Contacts_SearchCompleted(object sender, ContactsSearchEventArgs e)
        {
            MessageBox.Show(e.Results.Count().ToString());

            System.Text.StringBuilder sb = new System.Text.StringBuilder();

            foreach (Contact con in e.Results)
            {
                sb.AppendLine(con.DisplayName);
                MessageBox.Show(con.DisplayName);
            }
        }


Here is the Screenshot http://snag.gy/kMeqD.jpg[^]
Posted
Updated 3-Jun-15 20:55pm
v2

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900