Get the type name

Posted by Neir0 on Stack Overflow See other posts from Stack Overflow or by Neir0
Published on 2010-04-05T17:09:53Z Indexed on 2010/04/05 17:13 UTC
Read the original article Hit count: 381

Filed under:
|

How i can get full right name of generic type?

For example: This code

typeof(List<string>).Name

return

List`1

instead of

List<string>

How to get a right name?

© Stack Overflow or respective owner

Related posts about c#

Related posts about generic