template myTemp(alias s)
{
enum myTemp = templateFunction!(??)(s.stringof);
}the templateFunction has this signature: int templateFunction(T)(string targetMembername)but I don't how to get the type name from the give symbol name in myTemp. Can I make this work?
