Convert.ChangeType does not support Guids
I suppose one can argue that this is not a “bug”, but it sure feels like one to me
-- the following Convert.ChangeType, with a Guid type, throws an exception:
Convert.ChangeType(”12345678-1234-1234-1234-1234567890AB”, typeof(Guid))
Note that this is easy enough to resolve, since you can use new Guid() instead,
but this isn't what you are expecting to do when converting types that are dynamic.