Is there a way to get something like the Type.AssemblyQualifiedName
property, which differentiates between a List of strings and a List of bytes, from a System.Reflection.FieldInfo
?
The FieldInfo.GetFullName()
method doesn't differentiate between the 2, and I need to be able to get the offset of a field, and still differentiate between List of strings and a List of bytes.