23 lines
774 B
C#
23 lines
774 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Indicates that a method will allow a variable number of arguments in its invocation. This class cannot be inherited.</summary>
|
|
// Token: 0x02000130 RID: 304
|
|
[Token(Token = "0x2000130")]
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
[ComVisible(true)]
|
|
public sealed class ParamArrayAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ParamArrayAttribute" /> class with default properties.</summary>
|
|
// Token: 0x06000AF2 RID: 2802 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AF2")]
|
|
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
|
|
public ParamArrayAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|