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

DebuggerDisplayAttributeOnAssemblyUsingTargetTypeNameInOtherAssembly_Lib.cs « Dependencies « Attributes.Debugger « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4af869817527eee45ef37995b518f9412c127de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Mono.Linker.Tests.Cases.Attributes.Debugger.Dependencies {
	public class DebuggerDisplayAttributeOnAssemblyUsingTargetTypeNameInOtherAssembly_Lib {
		public int Property { get; set; }

		public class NestedType {
			public int NestedProperty { get; set; }
		}

		public class GenericType<T> {
			public T PropertyOnGenericType { get; set; }
		}
	}
}