13 lines
383 B
C#
13 lines
383 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Indicates that information was lost about a class or interface when it was imported from a type library to an assembly.</summary>
|
|
// Token: 0x020002FD RID: 765
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.All, Inherited = false)]
|
|
public sealed class ComConversionLossAttribute : Attribute
|
|
{
|
|
}
|
|
}
|