Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeAttributesExtensions.cs
Go to the documentation of this file.
1
namespace
System.Reflection
;
2
3
internal
static
class
TypeAttributesExtensions
4
{
5
public
static
bool
IsForwarder
(
this
TypeAttributes
flags)
6
{
7
return
(flags & (
TypeAttributes
)2097152) != 0;
8
}
9
10
public
static
bool
IsNested
(
this
TypeAttributes
flags)
11
{
12
return
(flags &
TypeAttributes
.NestedFamANDAssem) != 0;
13
}
14
}
System.Reflection.TypeAttributesExtensions.IsForwarder
static bool IsForwarder(this TypeAttributes flags)
Definition
TypeAttributesExtensions.cs:5
System.Reflection.TypeAttributesExtensions.IsNested
static bool IsNested(this TypeAttributes flags)
Definition
TypeAttributesExtensions.cs:10
System.Reflection.TypeAttributesExtensions
Definition
TypeAttributesExtensions.cs:4
System.Reflection.TypeAttributes
TypeAttributes
Definition
TypeAttributes.cs:5
System.Reflection
Definition
ICustomTypeProvider.cs:1
source
System.Reflection.Metadata
System.Reflection
TypeAttributesExtensions.cs
Generated by
1.10.0