// Please use the following namespace
// using System.Windows.Forms;
// using GrapeCity.Win.Editors;
public void GetAddressFromPhoneCodeSample()
{
// Creates instance of GcAddress component.
GcAddress gcAddress1 = new GcAddress();
// Gets the records whose phone code exact match "022".
System.Console.WriteLine(gcAddress1.GetAddressFromPhoneCode("022"));
// Gets the records whose phone code start with "022"
System.Console.WriteLine(gcAddress1.GetAddressFromPhoneCode("022", false));
}
' Please use the following namespace
' using System.Windows.Forms;
' using GrapeCity.Win.Editors;
Public Sub GetAddressFromPhoneCodeSample()
' Creates instance of GcAddress component.
Dim gcAddress1 As New GcAddress()
' Gets the records whose phone code exact match "022".
System.Console.WriteLine(gcAddress1.GetAddressFromPhoneCode("022"))
' Gets the records whose phone code start with "022"
System.Console.WriteLine(gcAddress1.GetAddressFromPhoneCode("022", False))
End Sub