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,20 @@
using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Specifies the attributes for a manifest resource.</summary>
// Token: 0x0200026A RID: 618
[ComVisible(true)]
[Flags]
[Serializable]
public enum ResourceAttributes
{
/// <summary>A mask used to retrieve public manifest resources.</summary>
// Token: 0x04000B19 RID: 2841
Public = 1,
/// <summary>A mask used to retrieve private manifest resources.</summary>
// Token: 0x04000B1A RID: 2842
Private = 2
}
}