One of my assemblies contains the following 'provider' types:

I also have an XML file which holds provider info using the DeviceInfoProvider base class. A simplified version looks like this:
<DeviceInfoProvider Type="SbRioI2CProvider" Assembly="assembly.dll" >
</DeviceInfoProvider>
<DeviceInfoProvider Type="GenericProvider" Assembly="assembly.dll" >
</DeviceInfoProvider>
At runtime, I map XML fields to my variables:
assembly.dll ⇒ assemblyPath
Type ⇒ typeName
And after reading the XML, use the following code to instantiate my types:
var assembly = Assembly.LoadFrom(assemblyPath);
var type = (from t in assembly.GetTypes()
where t.IsPublic && t.Name == typeName
select t).FirstOrDefault();
if (type != null)
{
instance = type.GetConstructor(Type.EmptyTypes).Invoke(null);
}
As expected, this generates my objects appropriately.
The problem comes when I try to cast instance as a base class object:
using (var provider = instance as DeviceInfoProvider)
{
// provider is null!
}
The runtime type of instance is the expected derived class, yet I am unable to successfully cast it to its base type.
What am I missing?

typeName? read from the XML or a const string value "DeviceInfoProvider" ? – llj098 Apr 5 '12 at 2:36