| 1234567891011121314151617181920 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the Apache 2.0 License.// See the LICENSE file in the project root for more information. namespace System.Runtime.CompilerServices{    /// <summary>    /// Attribute to decorate a task-like type to specify a compatible asynchronous method builder.    /// </summary>    internal sealed class AsyncMethodBuilderAttribute : Attribute    {        /// <summary>        /// Creates a new instance of the attribute using the specified <paramref name="type"/>.        /// </summary>        /// <param name="type">The type implementing the asynchronous method builder.</param>        public AsyncMethodBuilderAttribute(Type type)        {        }    }}
 |