mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 17:28:00 +02:00
AllowDuplicatesAttribute
This commit is contained in:
parent
2618b29daa
commit
8808da307f
13 changed files with 39 additions and 2 deletions
|
@ -251,6 +251,12 @@ namespace System
|
|||
}
|
||||
}
|
||||
|
||||
[AttributeUsage(.Enum)]
|
||||
public struct AllowDuplicatesAttribute : Attribute
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[AttributeUsage(.Class | .Struct)]
|
||||
public struct UnionAttribute : Attribute
|
||||
{
|
||||
|
|
|
@ -848,6 +848,7 @@ namespace System.Reflection
|
|||
EnumDiscriminator = 0x0200
|
||||
}
|
||||
|
||||
[AllowDuplicates]
|
||||
public enum MethodFlags : int16
|
||||
{
|
||||
MethodAccessMask = 0x0007,
|
||||
|
@ -869,6 +870,7 @@ namespace System.Reflection
|
|||
|
||||
// vtable layout mask - Use this mask to retrieve vtable attributes.
|
||||
VtableLayoutMask = 0x0100,
|
||||
|
||||
ReuseSlot = 0x0000, // The default.
|
||||
NewSlot = 0x0100, // Method always gets a new slot in the vtable.
|
||||
// end vtable layout mask
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue