Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/InteropServices/InAttribute.cs
T
2026-04-10 22:50:51 +02:00

22 lines
720 B
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>Indicates that data should be marshaled from the caller to the callee, but not back to the caller.</summary>
// Token: 0x02000572 RID: 1394
[Token(Token = "0x2000572")]
[AttributeUsage(AttributeTargets.Parameter)]
[ComVisible(true)]
public sealed class InAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InAttribute" /> class.</summary>
// Token: 0x06002A9F RID: 10911 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A9F")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public InAttribute()
{
}
}
}