Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OptionalAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d53f5291fa0a060303c14b97e942d17321a680d7 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Parameter)]
	public sealed class OptionalAttribute : Attribute {
		public OptionalAttribute () {
		}
	}
}