File: System\Reflection\TypeLoading\Types\RoModifiedStandaloneType.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.
 
using System.Reflection.TypeLoading;
 
namespace System.Reflection
{
    /// <summary>
    /// Standard modified types that don't have references to other types.
    /// </summary>
    internal sealed partial class RoModifiedStandaloneType : RoModifiedType
    {
        public RoModifiedStandaloneType(RoType delegatingType) : base(delegatingType) { }
    }
}