```RecordRef[] recordRefs = new RecordRef[] { ...
# suitetalkapi
d
Copy code
RecordRef[] recordRefs = new RecordRef[] {
						new RecordRef() {
							internalId = "34298",
							type = RecordType.file,
							typeSpecified = true
						},
						new RecordRef()
						{
							internalId = "34297",
							type = RecordType.file,
							typeSpecified = true
						}
					};

					ReadResponse[] getResponses = Client.Service.getList(recordRefs).readResponse;

					List<File> files = getResponses.Select(x => (File)x.record).ToList();