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

CallerMemberNameAttribute.cs « Mono.Cecil.Tests « Test - github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63bd9b8acb2913a605cd15aec63bfddb3251d908 (plain)
1
2
3
4
5
6
7
8
9
10
#if NET_3_5 || NET_4_0
namespace System.Runtime.CompilerServices {
	[AttributeUsage (AttributeTargets.Parameter, Inherited = false)]
	public sealed class CallerMemberNameAttribute : Attribute {
		public CallerMemberNameAttribute ()
		{
		}
	}
}
#endif