This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Specifies the resource location.</summary>
// Token: 0x0200026B RID: 619
[ComVisible(true)]
[Flags]
[Serializable]
public enum ResourceLocation
{
/// <summary>Specifies an embedded (that is, non-linked) resource.</summary>
// Token: 0x04000B1C RID: 2844
Embedded = 1,
/// <summary>Specifies that the resource is contained in another assembly.</summary>
// Token: 0x04000B1D RID: 2845
ContainedInAnotherAssembly = 2,
/// <summary>Specifies that the resource is contained in the manifest file.</summary>
// Token: 0x04000B1E RID: 2846
ContainedInManifestFile = 4
}
}