File: System\Reflection\TypeLoading\Types\RoPinnedType.cs
Web Access
Project: src\src\libraries\System.Reflection.MetadataLoadContext\src\System.Reflection.MetadataLoadContext.csproj (System.Reflection.MetadataLoadContext)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Reflection.TypeLoading
{
    /// <summary>
    /// This is used to represent a PinnedType. It is quite ill-behaved so the only time it is created is by the EcmaPinnedTypeProvider.
    /// It is only used to implement the MethodBody.LocalVariables property.
    /// </summary>
    internal sealed class RoPinnedType : RoWrappedType
    {
        internal RoPinnedType(RoType unmodifiedType)
            : base(unmodifiedType)
        {
        }
    }
}