scripts
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Encapsulates a method that has one parameter 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>
|
||||
/// <param name="arg">The parameter of the method that this delegate encapsulates.</param>
|
||||
/// <typeparam name="T">The type of the parameter of the method that this delegate encapsulates.</typeparam>
|
||||
/// <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
|
||||
// Token: 0x02000060 RID: 96
|
||||
// (Invoke) Token: 0x0600050F RID: 1295
|
||||
public delegate TResult Func<T, TResult>(T arg1);
|
||||
}
|
||||
Reference in New Issue
Block a user