using System;
namespace System
{
/// Encapsulates a method that takes a single parameter and does not return a value.
/// The parameter of the method that this delegate encapsulates.
/// The type of the parameter of the method that this delegate encapsulates.
/// 1
// Token: 0x020006E4 RID: 1764
// (Invoke) Token: 0x06004218 RID: 16920
public delegate void Action(T obj);
}