Get the List of Apex Classes from a Salesforce Org

We can write SOQL query on ApexClass object to get all classes from an Org.

Sample SOQL:

SELECT Name, Status, ApiVersion, CreatedDate FROM ApexClass

  • Amit Rathore

    How can i create objects of those classes? and use their methods?