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

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

namespace Mono.Linker.Tests.Cases.Reflection {
	/// <summary>
	/// We don't know if `typeName` will be changed or not.  If we error on the side of caution and preserve something
	/// that we found, I don't think that's a big deal
	/// </summary>
	public class TypeUsedViaReflectionLdstrValidButChanged {
		public static void Main ()
		{
			var replace = "Mono.Linker";
			var with = "Blah.Blah";
			var typeName = "Mono.Linker.Tests.Cases.Reflection.TypeUsedViaReflectionLdstrValidButChanged+Full, test";
			var typeKept = Type.GetType (typeName.Replace (replace, with), false);
		}

		[Kept]
		public class Full { }
	}
}