Files
2026-06-04 11:42:34 +02:00

12 lines
516 B
C#

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