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

ParameterizedType.RuntimeDetermined.cs « RuntimeDetermined « TypeSystem « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 430e57596c96b45b93c6d9cac807c70a6af927bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
{
    partial class ParameterizedType
    {
        public sealed override bool IsRuntimeDeterminedSubtype
        {
            get
            {
                return _parameterType.IsRuntimeDeterminedSubtype;
            }
        }
    }
}