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

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

namespace Mono.Linker.Tests.Cases.Reflection
{
	public class TypeUsedViaReflectionAssemblyDoesntExist
	{
		public static void Main ()
		{
			var typeName = "Mono.Linker.Tests.Cases.Reflection.TypeUsedViaReflectionAssemblyDoesntExist+Full, DoesntExist";
			var typeKept = Type.GetType (typeName, false);
		}

		public class Full { }
	}
}