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,19 @@
using System;
using System.Runtime.InteropServices;
namespace System.Resources
{
/// <summary>Specifies the assembly for the <see cref="T:System.Resources.ResourceManager" /> class to use to retrieve neutral resources by using the Packaging and Deploying Resources.</summary>
// Token: 0x02000282 RID: 642
[ComVisible(true)]
[Serializable]
public enum UltimateResourceFallbackLocation
{
/// <summary>Fallback resources are located in the main assembly.</summary>
// Token: 0x04000B89 RID: 2953
MainAssembly,
/// <summary>Fallback resources are located in a satellite assembly in the location specified by the <see cref="P:System.Resources.NeutralResourcesLanguageAttribute.Location" /> property.</summary>
// Token: 0x04000B8A RID: 2954
Satellite
}
}