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

ParameterizedType.Canon.cs « Canon « TypeSystem « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a66eeb39d88fe9066074dbfeccdbcbc5938e26f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Internal.TypeSystem
{
    // Holds code for canonicalizing a parameterized type
    partial class ParameterizedType
    {
        public sealed override bool IsCanonicalSubtype(CanonicalFormKind policy)
        {
            return ParameterType.IsCanonicalSubtype(policy);
        }
    }
}