13 lines
299 B
C#
13 lines
299 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Indicates that a parameter is optional.</summary>
|
|
// Token: 0x0200004D RID: 77
|
|
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
|
|
[ComVisible(true)]
|
|
public sealed class OptionalAttribute : Attribute
|
|
{
|
|
}
|
|
}
|