Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDispatchImplAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class, Inherited = false)]
4[Obsolete("IDispatchImplAttribute has been deprecated and is not supported.")]
5public sealed class IDispatchImplAttribute : Attribute
6{
7 public IDispatchImplType Value { get; }
8
9 public IDispatchImplAttribute(short implType)
10 : this((IDispatchImplType)implType)
11 {
12 }
13
15 {
16 Value = implType;
17 }
18}