File tree 1 file changed +0
-23
lines changed
1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- using System ;
16
- using System . Reflection ;
17
- using System . Runtime . CompilerServices ;
18
-
19
15
namespace OnixLabs . Playground ;
20
16
21
17
internal static class Program
22
18
{
23
19
private static void Main ( )
24
20
{
25
- try
26
- {
27
- InvalidOperationException ex = new ( "Hello" ) ;
28
-
29
- foreach ( PropertyInfo property in ex . GetType ( ) . GetProperties ( BindingFlags . Public | BindingFlags . Instance ) )
30
- {
31
- Console . WriteLine ( $ "{ property . Name } = { property . GetValue ( ex ) } ") ;
32
- }
33
-
34
- throw ex ;
35
- }
36
- catch ( Exception ex )
37
- {
38
- foreach ( PropertyInfo property in ex . GetType ( ) . GetProperties ( BindingFlags . Public | BindingFlags . Instance ) )
39
- {
40
- Console . WriteLine ( $ "{ property . Name } = { property . GetValue ( ex ) } ") ;
41
- }
42
- }
43
-
44
21
}
45
22
}
You can’t perform that action at this time.
0 commit comments