using System;
namespace System
{
/// Encapsulates a method that has no parameters and returns a value of the type specified by the parameter.
/// The return value of the method that this delegate encapsulates.
/// The type of the return value of the method that this delegate encapsulates.
// Token: 0x0200005F RID: 95
// (Invoke) Token: 0x0600050B RID: 1291
public delegate TResult Func();
}