See i have a situation like this...
object myRoledata = List<Roles>() --> (some list or Ienumerable type)
Now i have a generic method which creates an XML object from List<T> -
Something like this..
public string GetXML<T>(object listdata)
{
List<T> objLists = (List<T>)Convert.ChangeType(listData, typeof(List<T>));
foreach(var obj in listdata)
{
//logic to create xml
}
}
Now in order to run this method I have to do like this:
string xml = GetXML<Roles>(myRoledata);
Now i dont know what Type may come to me to be passed to GetXML method. I have a method which will call GetXML for different Types e.g. Roles, Users etc
now i can get the Type within the List<> like this
Type genericType = obj.GetType().GetGenericArguments()[0];
but cannot pass it like this
string xml = GetXML<genericType>(myRoledata);
Is there anyway in which i can pass any genericTypes to GetXML method?