using System;
class Address
{
int index, house, apartment;
string country, street, city;
Address instance = new Address();
instance.Index = 354000;
instance.House = 2;
//Properties
int Index
get
return index;
}
set
index = value;
int House
return house;
house = value;
int Apartment
return apartment;
apartment = value;
string Country
return country;
country = value;
string Street
return street;
street = value;
string City
return city;
city = value;