Necronet
Necronet

Reputation: 6813

C# Assembly Problem for loading

I have a project that uses assembly to load some clases dynamicly nevertheles there is this one class that the current project does not have it as a reference so when i try tu use GetType(type) i just get a null.... what's the bes approach to handle this

should i reference the projects?

Upvotes: 0

Views: 171

Answers (1)

Greg D
Greg D

Reputation: 44096

You're either failing to load the assembly or the typename is incorrect. Verify that your target assembly doesn't have other dependencies that you're missing.

Upvotes: 1

Related Questions