File: Internal\TypeSystem\ArrayMethod.Runtime.cs
Web Access
Project: src\src\runtime\src\coreclr\nativeaot\System.Private.TypeLoader\src\System.Private.TypeLoader.csproj (System.Private.TypeLoader)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.


using System;

using Internal.Runtime.CompilerServices;

namespace Internal.TypeSystem
{
    public partial class ArrayMethod : MethodDesc
    {
        public override MethodNameAndSignature NameAndSignature
        {
            get
            {
                // TODO Eventually implement via working with a RuntimeMethod that refers to the actual implementation.
                // https://github.com/dotnet/corert/issues/3772
                throw new NotImplementedException();
            }
        }
    }
}