Fetch all values from a single record

Fetch all values from a single record

Hi,

I would like to fetch all values from a single record but can't figure out the exact way. At the moment I have:
det = Addresses[ID = input.Delivery_Address];
input.Address_Details= det.Account_Name + " " + det.Address_Line_1 + det.Address_Line_2 + det.City + det.City + det.County + det.Country;

What I would like is something like:
input.Address_Details = det.getall();

Where "getall()" returns every field values for that specific record in my Addresses form.

I'm guessing it's something simple but I can't find it.
Would appreciate any help.
Thanks.