using System;
using Cpp2IlInjected;
namespace System
{
/// Represents a method that converts an object from one type to another type.
/// The object to convert.
/// The type of object that is to be converted.
/// The type the input object is to be converted to.
/// The that represents the converted .
// Token: 0x020000B1 RID: 177
// (Invoke) Token: 0x060004ED RID: 1261
[Token(Token = "0x20000B1")]
public delegate TOutput Converter(TInput input);
}