I try to make an example of late binding. So that I understand better the difference between early binding and late binding. I try it like this:
using System;
using System.Reflection;
namespace EarlyBindingVersusLateBinding
{
class Program
{
static void Main(string[] args)
{
Customer cust = new Customer();
Assembly hallo = Assembly.GetExecutingAssembly();
Type CustomerType = hallo.GetType("EarlyBindingVersusLateBinding.cust");
object customerInstance = Activator.CreateInstance(CustomerType);
MethodInfo getFullMethodName = CustomerType.GetMethod("FullName");
string[] paramaters = new string[2];
paramaters[0] = "Niels";
paramaters[1] = "Ingenieur";
string fullname = (string)getFullMethodName.Invoke(customerInstance, paramaters);
Console.WriteLine(fullname);
Console.Read();
}
}
public class Customer
{
public string FullName(string firstName, string lastName)
{
return firstName + " " + lastName;
}
}
}
but I get this exception:
An unhandled exception of type 'System.ArgumentNullException' occurred in mscorlib.dll
Additional information: Value cannot be null.
on this line:
object customerInstance = Activator.CreateInstance(CustomerType);
And I can't figure out how to fix that.
Thank you.
CustomerType
isnull
? Judging by the error it most likely is. So then the question is whyhallo.GetType("EarlyBindingVersusLateBinding.cust");
returnsnull
. Most likely scenario is, that the name of the type is different. (Also I don't know of the bat, whether GetType allows relative Namespace path's) You could usehallo.GetTypes()
and list each Type within the assembly to learn more. – MrPaulch