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

RuntimeDeterminedType.Diagnostic.cs « RuntimeDetermined « TypeSystem « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91451e43ee613149ab9f9882b9fa1b35d5cc9d3d (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
// 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
{
    partial class RuntimeDeterminedType
    {
        public override string DiagnosticName
        {
            get
            {
                return _rawCanonType.DiagnosticName;
            }
        }

        public override string DiagnosticNamespace
        {
            get
            {
                return String.Concat(_runtimeDeterminedDetailsType.DiagnosticName, "_", _rawCanonType.DiagnosticNamespace); ;
            }
        }
    }
}