using System;
namespace System
{
/// Encapsulates a method that has one parameter and returns a value of the type specified by the parameter.
/// The return value of the method that this delegate encapsulates.
/// The parameter of the method that this delegate encapsulates.
/// The type of the parameter of the method that this delegate encapsulates.
/// The type of the return value of the method that this delegate encapsulates.
// Token: 0x02000060 RID: 96
// (Invoke) Token: 0x0600050F RID: 1295
public delegate TResult Func(T arg1);
}