Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 650 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 650 Bytes

wild-reflection

Object Inspection time

In this challenge, you will create a class for inspecting other classes.

Validation Criteria

A method GetAllProperties retrieves all properties of a Type.
A method GetAllFields retrieves all fields of a Type.
A method GetAllMethods retrieves all methods of a Type.
The program displays the name and visibility of retrieved properties, fields, and methods.

Ensure each method accurately retrieves the specified elements and that visibility information is clearly presented in the output.

image