using System; namespace System { /// Represents a method that converts an object from one type to another type. /// The that represents the converted . /// The object to convert. /// The type of object that is to be converted. /// The type the input object is to be converted to. /// 1 // Token: 0x020006E9 RID: 1769 // (Invoke) Token: 0x0600422C RID: 16940 public delegate TOutput Converter(TInput input); }