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.