I have a string and need to convert it into a class Name
.
For example, I have the class :
public class Account
{
public double Quantity { get; set; }
public double Amount{ get; set; }
}
And I need to convert:
String x = "Account"
to the name of that class
Thank you