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

KeptMemberAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c9d1bfdd5c32fc1e880a34eb0b4f8cfff1e5bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions {
	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Delegate | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = true, Inherited = false)]
	public sealed class KeptMemberAttribute : KeptAttribute {

		public KeptMemberAttribute (string name)
		{
			if (string.IsNullOrEmpty (name))
				throw new ArgumentException ("Value cannot be null or empty.", nameof (name));
		}
	}
}