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: 0x02000208 RID: 520
|
|
[Token(Token = "0x2000208")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum UltimateResourceFallbackLocation
|
|
{
|
|
/// <summary>Fallback resources are located in the main assembly.</summary>
|
|
// Token: 0x04000A10 RID: 2576
|
|
[Token(Token = "0x4000A10")]
|
|
MainAssembly,
|
|
/// <summary>Fallback resources are located in a satellite assembly.</summary>
|
|
// Token: 0x04000A11 RID: 2577
|
|
[Token(Token = "0x4000A11")]
|
|
Satellite
|
|
}
|
|
}
|