File: system\runtime\compilerservices\decoratednameattribute.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--==
using System;
using System.Runtime.InteropServices;
 
namespace System.Runtime.CompilerServices
{
    [AttributeUsage(AttributeTargets.All),
     ComVisible(false)]
    internal sealed class DecoratedNameAttribute : Attribute
    {
        public DecoratedNameAttribute(string decoratedName)
        {}
    }
}