16 lines
603 B
C#
16 lines
603 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.VisualBasic
|
|
{
|
|
[Embedded()]
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Module | AttributeTargets.Assembly, Inherited = false)]
|
|
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
|
|
[System.Runtime.CompilerServices.CompilerGenerated()]
|
|
internal sealed class Embedded : Attribute
|
|
{
|
|
}
|
|
} |