Hi Andy,
You can use node.GetValue(fieldName) to first get the attachment guids. Then you can use node.AllAttachments to get the AttachmentInfo object by guid.
If you need to get attachments for many nodes, you can save some SQL Server round trips, by getting all the attachment guids for several nodes, and then use something like the following to get all AttachmentInfo objects in one round trip:
var attachments = AttachmentInfoProvider.GetAttachments()
.WhereIn("AttachmentGUID", attachmentGuids);
Mike