m
This commit is contained in:
@@ -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: 0x020000B1 RID: 177
|
||||
// (Invoke) Token: 0x060004ED RID: 1261
|
||||
[Token(Token = "0x20000B1")]
|
||||
public delegate TOutput Converter<in TInput, out TOutput>(TInput input);
|
||||
}
|
||||
Reference in New Issue
Block a user