using System.Collections.Generic; using Google.ProtocolBuffers.Collections; namespace Google.ProtocolBuffers.Descriptors { /// /// Internal class containing utility methods when working with descriptors. /// static class DescriptorUtil { /// /// Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert /// arrays. /// internal delegate TOutput IndexedConverter(TInput element, int index); /// /// Converts the given array into a read-only list, applying the specified conversion to /// each input element. /// internal static IList ConvertAndMakeReadOnly(IList input, IndexedConverter converter) { TOutput[] array = new TOutput[input.Count]; for (int i = 0; i < array.Length; i++) { array[i] = converter(input[i], i); } return Lists.AsReadOnly(array); } } }