// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: CLSCompliantAttribute
**
**
** Purpose: Container for assemblies.
**
** Date: Jan 28, 2000
**
=============================================================================*/
namespace System {
//|
[AttributeUsage (AttributeTargets.All, Inherited=true, AllowMultiple=false)]
public sealed class CLSCompliantAttribute : Attribute
{
//|
public CLSCompliantAttribute (bool isCompliant);
}
}