Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeAttributesExtensions.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3internal 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}
static bool IsForwarder(this TypeAttributes flags)
static bool IsNested(this TypeAttributes flags)