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

ParameterizedType.cs « Common « TypeSystem « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ec0fbd352bff5b9f76be5ee9e566a785cf7d39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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.TypeSystem
{
    public abstract partial class ParameterizedType : TypeDesc
    {
        private TypeDesc _parameterType;

        internal ParameterizedType(TypeDesc parameterType)
        {
            _parameterType = parameterType;
        }

        public TypeDesc ParameterType
        {
            get
            {
                return _parameterType;
            }
        }

        public override TypeSystemContext Context
        {
            get
            {
                return _parameterType.Context;
            }
        }
    }
}