In my code using reflections i wrote
if (f.FieldType.IsAssignableFrom("".GetType()))
I have a class that has an implicit conversion to strings. However the if statement above doesnt catch it. How can i make reflection/the above if statement catch strings and classes with implicit string conversion? instead of specifically strings and each class i know about?