Is there a Java Descriptor like thing in .Net?

Posted by Sun Liwen on Stack Overflow See other posts from Stack Overflow or by Sun Liwen
Published on 2008-12-18T16:17:39Z Indexed on 2010/04/04 23:43 UTC
Read the original article Hit count: 232

Filed under:
|
|
|

I'm working on a static analysis tool for .NET assembly. In Java, there is a Descriptor which can be used to represent method or field in a string with specified grammar.

for field:

double d[][][];

will be

[[[D

It's useful especially when doing bytecode analysis. Coz it's easy to describe. If there a similar thing in .NET CLR? Or is there a better way to achieve this? Thanks!

© Stack Overflow or respective owner

Related posts about .NET

Related posts about clr