There is no longer a static method on the Assembly class in WinRT for gaining access to the current executing assembly? What is the methodology for this in WinRT?

link|improve this question

66% accept rate
feedback

1 Answer

up vote 9 down vote accepted

This should do the trick:

using System.Reflection;
...
typeof(Class).GetTypeInfo().Assembly

where Class would normally be the class that you're writing this code in.

link|improve this answer
-1: GetTypeInfo() is not a member of Type in WinRT – keithwarren7 Sep 17 '11 at 2:20
1  
@keithwarren7 It's an extension method that lives in System.Reflection namespace (where TypeInfo itself is defined), so you need to add that to your usings first. I'll update the answer. – Pavel Minaev Sep 17 '11 at 3:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.