This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+12
View File
@@ -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);
}