Definition at line 32 of file Assertions.cs.
◆ DisableAssertions() [1/2]
| static void IKVM.Runtime.Assertions.DisableAssertions |
( |
| ) |
|
|
static |
Definition at line 86 of file Assertions.cs.
87 {
88 userAsserts = false;
89 }
◆ DisableAssertions() [2/2]
| static void IKVM.Runtime.Assertions.DisableAssertions |
( |
string | classOrPackage | ) |
|
|
static |
Definition at line 76 of file Assertions.cs.
77 {
78 AddOption(classOrPackage, false);
79 }
◆ DisableSystemAssertions()
| static void IKVM.Runtime.Assertions.DisableSystemAssertions |
( |
| ) |
|
|
static |
Definition at line 96 of file Assertions.cs.
97 {
98 sysAsserts = false;
99 }
◆ EnableAssertions() [1/2]
| static void IKVM.Runtime.Assertions.EnableAssertions |
( |
| ) |
|
|
static |
Definition at line 81 of file Assertions.cs.
82 {
83 userAsserts = true;
84 }
◆ EnableAssertions() [2/2]
| static void IKVM.Runtime.Assertions.EnableAssertions |
( |
string | classOrPackage | ) |
|
|
static |
Definition at line 71 of file Assertions.cs.
72 {
73 AddOption(classOrPackage, true);
74 }
◆ EnableSystemAssertions()
| static void IKVM.Runtime.Assertions.EnableSystemAssertions |
( |
| ) |
|
|
static |
Definition at line 91 of file Assertions.cs.
92 {
93 sysAsserts = true;
94 }
The documentation for this class was generated from the following file: