| File: IL\Stubs\StartupCode\NativeLibraryStartupMethod.Sorting.cs | Web Access |
| Project: src\src\runtime\src\coreclr\tools\aot\ILCompiler.Compiler\ILCompiler.Compiler.csproj (ILCompiler.Compiler) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Internal.TypeSystem; using Debug = System.Diagnostics.Debug; namespace Internal.IL.Stubs.StartupCode { public partial class NativeLibraryStartupMethod { protected override int ClassCode => -304225482; protected override int CompareToImpl(MethodDesc other, TypeSystemComparer comparer) { // Should be a singleton Debug.Assert(this == other); return 0; } } } |