You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mono-cecil
Hello,
For performace I'd like initially to load only type's names/fullnames.
The other information (fields, properties,methods) I'd like to load
later (when considering the given type). Is this scenario possible in
Mono.Cecil?
Lotfi Gheribi
unread,
Nov 19, 2009, 9:22:11 AM11/19/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mono-...@googlegroups.com
Mono does not contain APIs for getting such information without loading the type hierarchy. However, it uses lazy loading for other stuff like method bodies...
If performance is an absolute requirement, you may consider implementing your own optimized routines
Jb Evain
unread,
Nov 19, 2009, 9:23:57 AM11/19/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mono-...@googlegroups.com
Hey Anatoly,
Right now Cecil aggresively loads everything. Its next version is
allows you to load metadata lazily. I suggest you use the current
version of Cecil, and try the next version as soon as it's out.