OptionalAttribute.cs 200 B

12345678910
  1. using System;
  2. namespace System.Runtime.InteropServices {
  3. [AttributeUsage (AttributeTargets.Parameter)]
  4. public sealed class OptionalAttribute : Attribute {
  5. public OptionalAttribute () {
  6. }
  7. }
  8. }