Files
Dec2017-Script-Dump/mscorlib/System/Action.cs
T
2026-06-04 11:42:34 +02:00

13 lines
500 B
C#

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);
}