void Main()
{
test((int?)null);
test((bool?)null);
test((DateTime?)null);
}
void test(object p)
{
//**How to get the type of parameter p**
}
void Main() { test((int?)null); test((bool?)null); test((DateTime?)null); } void test(object p) { //**How to get
Share
Maybe this can help :