Gets or sets the city. The City Property gets or sets the city associated with the applicant's address.
Syntax
'Declaration
Public Overridable Property City As String
'Usage
Dim instance As Address
Dim value As String
instance.City = value
value = instance.City
public virtual string City {get; set;}
public read-write property City: String; virtual;
public function get,set City : String
public: __property virtual string* get_City();
public: __property virtual void set_City(
string* value
);
public:
virtual property String^ City {
String^ get();
void set ( String^ value);
}
Property Value
The city.
See Also