Hi Throb,
I have a NullReferenceException in the initialization of the Assemblies array with Silverlight :
static Assembly[] _Assemblies =
System.Windows.Deployment.Current.Parts
.Select(p => new Uri(p.Source, UriKind.Relative))
.Concat(System.Windows.Deployment.Current.ExternalParts.Select(ep => ep.Source))
.Select(uri => System.Windows.Application.GetResourceStream(uri))
.Select(strInfo => new System.Windows.AssemblyPart().Load(strInfo.Stream))
.ToArray()
When System.Windows.Application.GetResourceStream(uri)) return null.
I have fix with this trick :
static Assembly[] _Assemblies =
System.Windows.Deployment.Current.Parts
.Select(p => new Uri(p.Source, UriKind.Relative))
.Concat(System.Windows.Deployment.Current.ExternalParts.Select(ep => ep.Source))
.Select(uri => System.Windows.Application.GetResourceStream(uri))
.Select(strInfo => strInfo == null ? null : new System.Windows.AssemblyPart().Load(strInfo.Stream))
.Where(assembly => assembly != null)
.ToArray()
Thanks.
Comments: ** Comment from web user: Throb **
I have a NullReferenceException in the initialization of the Assemblies array with Silverlight :
static Assembly[] _Assemblies =
System.Windows.Deployment.Current.Parts
.Select(p => new Uri(p.Source, UriKind.Relative))
.Concat(System.Windows.Deployment.Current.ExternalParts.Select(ep => ep.Source))
.Select(uri => System.Windows.Application.GetResourceStream(uri))
.Select(strInfo => new System.Windows.AssemblyPart().Load(strInfo.Stream))
.ToArray()
When System.Windows.Application.GetResourceStream(uri)) return null.
I have fix with this trick :
static Assembly[] _Assemblies =
System.Windows.Deployment.Current.Parts
.Select(p => new Uri(p.Source, UriKind.Relative))
.Concat(System.Windows.Deployment.Current.ExternalParts.Select(ep => ep.Source))
.Select(uri => System.Windows.Application.GetResourceStream(uri))
.Select(strInfo => strInfo == null ? null : new System.Windows.AssemblyPart().Load(strInfo.Stream))
.Where(assembly => assembly != null)
.ToArray()
Thanks.
Comments: ** Comment from web user: Throb **
Ok.. Applied your suggestion.. Tx :-)