Files
2026-06-04 11:42:34 +02:00

13 lines
352 B
C#

using System;
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: 0x02000043 RID: 67
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
[ComVisible(true)]
public sealed class InAttribute : Attribute
{
}
}