scripts
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Encapsulates a method that takes a single parameter and does not return a value.</summary>
|
||||
/// <param name="obj">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>
|
||||
/// <filterpriority>1</filterpriority>
|
||||
// Token: 0x020006E4 RID: 1764
|
||||
// (Invoke) Token: 0x06004218 RID: 16920
|
||||
public delegate void Action<T>(T obj);
|
||||
}
|
||||
Reference in New Issue
Block a user