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