public static RLAddressRecordList ToList<T>(T[] array, Func <T, RCAddressRecord> converter) { RLAddressRecordList result = new RLAddressRecordList(); result.InnerFromArray(array, converter); return result; }
public static RLAddressRecordList FromRestList<T>(RestList<T> restList, Func <T, RCAddressRecord> converter) { RLAddressRecordList result = new RLAddressRecordList(); result.InnerFromRestList(restList, converter); return result; }
public static T[] ToArray<T>(RLAddressRecordList recordlist, Func<RCAddressRecord, T> converter) { return InnerToArray(recordlist, converter); }