File: Internal\Runtime\CompilerHelpers\LibraryInitializer.cs
Web Access
Project: src\src\runtime\src\coreclr\nativeaot\System.Private.StackTraceMetadata\src\System.Private.StackTraceMetadata.csproj (System.Private.StackTraceMetadata)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;

namespace Internal.Runtime.CompilerHelpers
{
    public class LibraryInitializer
    {
        public static void InitializeLibrary()
        {
            Internal.StackTraceMetadata.StackTraceMetadata.Initialize();
        }
    }
}