MSDN says it is AppDomain.GetAssemblies()supported in Silverlight 4 .
In my project, when I aim at version 4 of Silverlight (I tested three times), I cannot access the method GetAssemblies()on AppDomain, as shown in the screenshot below:

If I try anyway, it will not compile. I can get around this using the following code snippet:
dynamic domain = AppDomain.CurrentDomain;
var assemblies = domain.GetAssemblies();
It compiles and seems to work fine, but only in Silverlight Client 5.X and Silverlight 4.0.60351 and above from my tests. It does not work for lower client versions. This project is the entry point of my Silverlight application.
Googling on this topic basically says that it is supported ...
So my questions are:
- a). , , , , 4.X?
- b)
AppDomain.CurrentDomain.GetAssemblies() IDE ? - ?
, , :
- Silverlight 5.1.10411
- Silverlight SDK 3, 4 5
- Silverlight 4 Toolkit 2010
- Silverlight 4 VS2010
/ - (), ...
-
: , GetAssemblies() AppDomain mscorlib.dll SL4. , MSDN , SL4 - - ( SL5- ?)...