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

PEFileKinds.cs « System.Reflection.Emit « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0677897bc8237e724fb4c1485604d4c17479e799 (plain)
1
2
3
4
5
6
7
8
namespace System.Reflection.Emit {
	public enum PEFileKinds {
		Dll = 1,
		ConsoleApplication = 2,
		WindowApplication = 3
	}
}