using System; using Cpp2IlInjected; namespace System.Threading { /// Provides lazy initialization routines. // Token: 0x0200030A RID: 778 [Token(Token = "0x200030A")] public static class LazyInitializer { /// Initializes a target reference type by using a specified function if it hasn't already been initialized. /// The reference of type T to initialize if it hasn't already been initialized. /// The function that is called to initialize the reference. /// The reference type of the reference to be initialized. /// The initialized value of type . /// Type does not have a default constructor. /// /// returned null (Nothing in Visual Basic). // Token: 0x06001CC1 RID: 7361 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6001CC1")] [Address(RVA = "0x12999B0", Offset = "0x12987B0", VA = "0x1812999B0")] public static T EnsureInitialized(ref T target, Func valueFactory) where T : class { return null; } // Token: 0x06001CC2 RID: 7362 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6001CC2")] [Address(RVA = "0x12998F0", Offset = "0x12986F0", VA = "0x1812998F0")] private static T EnsureInitializedCore(ref T target, Func valueFactory) where T : class { return null; } } }