This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents a method that converts an object from one type to another type.</summary>
/// <param name="input">The object to convert.</param>
/// <typeparam name="TInput">The type of object that is to be converted.</typeparam>
/// <typeparam name="TOutput">The type the input object is to be converted to.</typeparam>
/// <returns>The <typeparamref name="TOutput" /> that represents the converted <typeparamref name="TInput" />.</returns>
// Token: 0x020000AA RID: 170
// (Invoke) Token: 0x060004D2 RID: 1234
[Token(Token = "0x20000AA")]
public delegate TOutput Converter<in TInput, out TOutput>(TInput input);
}