summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Reflection/SignaturePointerType.cs
blob: a75a20816586d9df5462a689dc39db8f6182042c (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;

namespace System.Reflection
{
    internal sealed class SignaturePointerType : SignatureHasElementType
    {
        internal SignaturePointerType(SignatureType elementType)
            : base(elementType)
        {
        }
    
        protected sealed override bool IsArrayImpl() => false;
        protected sealed override bool IsByRefImpl() => false;
        protected sealed override bool IsPointerImpl() => true;
    
        public sealed override bool IsSZArray => false;
        public sealed override bool IsVariableBoundArray => false;
    
        public sealed override int GetArrayRank() => throw new ArgumentException(SR.Argument_HasToBeArrayClass);
    
        protected sealed override string Suffix => "*";
    }
}