Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UnboxingMethodDescFactory.cs « JitInterface « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 457f2fa87259acd978ad9d1b40fbf95363d9fecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Collections.Generic;
using Internal.TypeSystem;

namespace Internal.JitInterface
{
    internal sealed class UnboxingMethodDescFactory : Dictionary<MethodDesc, UnboxingMethodDesc>
    {
        public UnboxingMethodDesc GetUnboxingMethod(MethodDesc method)
        {
            if (!TryGetValue(method, out UnboxingMethodDesc result))
            {
                result = new UnboxingMethodDesc(method, this);
                Add(method, result);
            }

            return result;
        }
    }
}