24 lines
776 B
C#
24 lines
776 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Resources
|
|
{
|
|
/// <summary>Specifies whether a <see cref="T:System.Resources.ResourceManager" /> object looks for the resources of the app's default culture in the main assembly or in a satellite assembly.</summary>
|
|
// Token: 0x02000201 RID: 513
|
|
[Token(Token = "0x2000201")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum UltimateResourceFallbackLocation
|
|
{
|
|
/// <summary>Fallback resources are located in the main assembly.</summary>
|
|
// Token: 0x04000A06 RID: 2566
|
|
[Token(Token = "0x4000A06")]
|
|
MainAssembly,
|
|
/// <summary>Fallback resources are located in a satellite assembly.</summary>
|
|
// Token: 0x04000A07 RID: 2567
|
|
[Token(Token = "0x4000A07")]
|
|
Satellite
|
|
}
|
|
}
|