25 lines
824 B
C#
25 lines
824 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Microsoft.CSharp.RuntimeBinder
|
|
{
|
|
/// <summary>Represents information about C# dynamic operations that are specific to particular arguments at a call site. Instances of this class are generated by the C# compiler.</summary>
|
|
// Token: 0x02000003 RID: 3
|
|
[Token(Token = "0x2000003")]
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public sealed class CSharpArgumentInfo
|
|
{
|
|
// Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000001")]
|
|
[Address(RVA = "0x49A4C0", Offset = "0x4994C0", VA = "0x18049A4C0")]
|
|
private CSharpArgumentInfo(CSharpArgumentInfoFlags flags, string name)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000001 RID: 1
|
|
[Token(Token = "0x4000001")]
|
|
internal static readonly CSharpArgumentInfo None;
|
|
}
|
|
}
|