Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/InteropServices/InAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000591 RID: 1425
[Token(Token = "0x2000591")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class InAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InAttribute" /> class.</summary>
// Token: 0x06002CB3 RID: 11443 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CB3")]
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
public InAttribute()
{
}
}
}