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

◆ MonitoringIsEnabled

bool System.AppDomain.MonitoringIsEnabled
staticgetset

Definition at line 60 of file AppDomain.cs.

61 {
62 get
63 {
64 return true;
65 }
66 set
67 {
68 if (!value)
69 {
70 throw new ArgumentException(SR.Arg_MustBeTrue);
71 }
72 }
73 }