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

◆ SwitchType

Type System.Diagnostics.SwitchAttribute.SwitchType
getset

Definition at line 35 of file SwitchAttribute.cs.

36 {
37 get
38 {
39 return _type;
40 }
41 [MemberNotNull("_type")]
42 set
43 {
44 if (value == null)
45 {
46 throw new ArgumentNullException("value");
47 }
48 _type = value;
49 }
50 }

Referenced by System.Diagnostics.SwitchAttribute.SwitchAttribute().