c# - Automatic conversion of winmd to DLL -
i'd create tool accepts .winmd
file (windows runtime component) , generates c# dll out of (containing public types defined in component).
as far i've learned, standard .net reflection apis cannot work on .winmd files, , 1 must used metadata unmanaged apis access information.
the question -- possible construct c# assembly out of information retrieved metadata api?
or better yet -- there tool (like tlbimp) job or similar?
a windows metadata file doesn't contain code - it's set of type definitions. , winmd file ecma 335 assembly, is c# dll (just rename .winmd .dll).
Comments
Post a Comment