Reflection: How to get the underlying type of a by-ref type
Posted
by Qwertie
on Stack Overflow
See other posts from Stack Overflow
or by Qwertie
Published on 2010-06-13T19:41:49Z
Indexed on
2010/06/13
20:12 UTC
Read the original article
Hit count: 210
I was surprised to learn that "ref" and "out" parameters are not marked by a special attribute, despite the existence of ParameterInfo.IsOut, ParameterInfo.IsIn (both of which are always false as far as I can see), ParameterAttributes.In and ParameterAttributes.Out. Instead, "ref" parameters are actually represented by a special kind of "Type" object and "out" parameters are just ref parameters with an additional attribute (what kind of attribute I don't yet know).
Anyway, to make a by-ref argument you call Type.MakeByRefType(), but my question is, if you already have a by-ref type, how do you get back to the original Type?
Hint: it's not UnderlyingSystemType:
Type t = typeof(int);
Console.WriteLine(t.MakeByRefType().UnderlyingSystemType==t); // FALSE
© Stack Overflow or respective owner