To check if var is String type
Hmm, I'm not sure why you are calling IsValueType
, but this should be sufficient:
if (conditions[name] is string)
{
///
}
if(conditions[name] is string)
{
}
else
{
}
Hmm, I'm not sure why you are calling IsValueType
, but this should be sufficient:
if (conditions[name] is string)
{
///
}
if(conditions[name] is string)
{
}
else
{
}