say i have this class Framework.Asd.Human with a public empty constructor. and i want to be able to dynamically create an instance of it from a string input "Framework.Asd.Human". Is this achievable? (in java and C#)
Edit:
Is it possible to pass in parameters too? like new Framework.Asd.Human("John", 100, 200); (i know there's no type safety but that's ok in this case)