I am developing an Android (Mono) application. I have an SQLite database. I am trying to make a dynamic function to which I want to pass either a Type or a String as a parameter and then use that param to call the .CreateTable< Parameter (expects a Type, but you cannot use a variable in here, even if the passed parameter is of type "Type" >.
In other words I have different tables I need to create based on which table name is passed as a param for this function. Inside the function I call the sqlite.CreateTable function. I want this "Type" to be based on the param input of the main method.
Thank you