Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TypeId

override object System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.TypeId
get

Definition at line 15 of file RootDesignerSerializerAttribute.cs.

16 {
17 get
18 {
19 if (_typeId == null)
20 {
21 string text = SerializerBaseTypeName ?? string.Empty;
22 int num = text.IndexOf(',');
23 if (num != -1)
24 {
25 text = text.Substring(0, num);
26 }
27 _typeId = GetType().FullName + text;
28 }
29 return _typeId;
30 }
31 }