I have following WCF class:
namespace BusinessServices.Exposure.Data
{
[DataContract]
public class RiskItemBO : ExposureBO
{
[DataMember]
public RiskItemBusinessService RiskItemBusinessService { get; set; }
}
}
The RiskItemBusinessService is a class which is defined in some other DLL and consists of String, Int and Short variables. I have methods to generate random values for these data types.
I have following questions:
I am using Type.GetProperties() to get all the properties within a class, which does give me the name of the property RiskItemBusinessService, however, when I try to do PropertyInfo.PropertyType, I get FileNotFoundException (RiskItemBusinessService, is in a different DLL). For this, I am catching the exception and loading the DLL into the catch clause, but still, when I try to do PropertyInfo.SetValue I again get the FileNotFoundException even though I have just loaded the DLL using Assembly.LoadFile.

FileNotFoundException? – babbupandey Dec 21 '12 at 0:49