Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ExportedType.cs
Go to the documentation of this file.
2
3public readonly struct ExportedType
4{
5 internal readonly MetadataReader reader;
6
7 internal readonly int rowId;
8
10
12
13 public bool IsForwarder
14 {
15 get
16 {
17 if (Attributes.IsForwarder())
18 {
19 return Implementation.Kind == HandleKind.AssemblyReference;
20 }
21 return false;
22 }
23 }
24
26
27 public StringHandle Namespace => reader.ExportedTypeTable.GetTypeNamespaceString(rowId);
28
30
32
34 {
35 this.reader = reader;
36 this.rowId = rowId;
37 }
38
43}
static ExportedTypeHandle FromRowId(int rowId)
CustomAttributeHandleCollection GetCustomAttributes()
ExportedType(MetadataReader reader, int rowId)